Skip to content

Commit

Permalink
drop support for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jfennick committed Sep 8, 2023
1 parent a0427c8 commit 8ccd1f2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-20.04, macos-11, windows-latest]
cibw_archs: ["auto64"]
cibw_build: ["cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*"]
cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ If you want to build your own Nyxus Docker container we provide a convenient she


## Dependencies
Nyxus is tested with Python 3.6+. Nyxus relies on the the following packages:
Nyxus is tested with Python 3.8+. Nyxus relies on the the following packages:

[pybind11](https://github.com/pybind/pybind11) >= 2.8.1 <br>
[libTIFF](http://www.libtiff.org) >= 3.6.1 <br>
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- https://repo.continuum.io/pkgs/free
- defaults
dependencies:
- python=3.7
- python>=3.8
- compilers
- boost[version='>=1.63']
- z5py
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,6 @@ def build_extension(self, ext):
ext_modules=[CMakeExtension("nyxus/backend")],
test_suite="tests",
zip_safe=False,
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=["numpy", "pandas", "pyarrow"]
)

0 comments on commit 8ccd1f2

Please sign in to comment.