Skip to content

Commit

Permalink
Made compatible with python 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Beliy Nikita committed Sep 11, 2024
1 parent d001053 commit 03dbb48
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
numpy<=1.26.4
pandas <= 1.4.4
pandas > 1.4
ruamel.yaml >= 0.15.35
coloredlogs
pyparsing
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@
long_description=long_description,
author="Nikita Beliy",
author_email="nikita.beliy@uliege.be",
python_requires=">=3.8,<3.11",
python_requires=">=3.8",
packages=setuptools.find_packages(),
install_requires=[
"numpy<=1.26.4",
"pandas <= 1.4.4",
"pandas>1.4.4",
"ruamel.yaml>=0.15.35",
"coloredlogs",
"pyparsing",
Expand Down

0 comments on commit 03dbb48

Please sign in to comment.