Skip to content

Commit

Permalink
Python: 3.8+
Browse files Browse the repository at this point in the history
Python 3.7 went EOL last month.
Time to bump up our supported versions to 3.8+ as well.
  • Loading branch information
ax3l committed Aug 9, 2023
1 parent 3689583 commit e2a4ba7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pyAMReX depends on the following popular third party software.
- [CMake 3.20.0+](https://cmake.org)
- [AMReX *development*](https://amrex-codes.github.io): we automatically download and compile a copy of AMReX
- [pybind11](https://github.com/pybind/pybind11/) 2.10.1+: we automatically download and compile a copy of pybind11 ([new BSD](https://github.com/pybind/pybind11/blob/master/LICENSE))
- [Python](https://python.org) 3.7+
- [Python](https://python.org) 3.8+
- [Numpy](https://numpy.org) 1.15+

Optional dependencies include:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def build_extension(self, ext):
ext_modules=cxx_modules,
cmdclass=cmdclass,
zip_safe=False,
python_requires=">=3.7",
python_requires=">=3.8",
tests_require=["pytest"],
install_requires=install_requires,
# cmdclass={'test': PyTest},
Expand All @@ -258,7 +258,6 @@ def build_extension(self, ext):
"Topic :: Software Development :: Libraries",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit e2a4ba7

Please sign in to comment.