Skip to content

Commit

Permalink
allow python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Sep 6, 2023
1 parent 7686139 commit 7fed609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ogcore-dev
channels:
- conda-forge
dependencies:
- python>=3.7.7, <3.11 # This restriction can be removed as soon as we test Python 3.11
- python>=3.7.7, <=3.11 # This restriction can be removed as soon as we test Python 3.11
- ipython
- setuptools
- scipy>=1.7.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
]
},
include_packages=True,
python_requires=">=3.7.7, <3.11",
python_requires=">=3.7.7, <=3.11",
install_requires=[
"scipy>=1.7.1",
"pandas>=1.2.5",
Expand Down

0 comments on commit 7fed609

Please sign in to comment.