From e2a4ba733e719a51be615e722f3634e5a5f41d0c Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Wed, 9 Aug 2023 15:58:48 -0700 Subject: [PATCH] Python: 3.8+ Python 3.7 went EOL last month. Time to bump up our supported versions to 3.8+ as well. --- README.md | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cf502faf..7ccc91aa 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/setup.py b/setup.py index 9b518cd5..5d8f4c7d 100644 --- a/setup.py +++ b/setup.py @@ -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}, @@ -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",