From 788a1af91dee82f9ee2e8427febe2ec8dacae8fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Justus=20Sagem=C3=BCller?= Date: Thu, 5 Sep 2024 16:33:25 +0200 Subject: [PATCH] Update setup.cfg file. This largely reflects the changes already made in `conda/meta.yaml`, and concerns removal of obsolete Python and NumPy versions. --- setup.cfg | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/setup.cfg b/setup.cfg index b9302ff6480..b59c26c4ef8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,26 +27,24 @@ classifiers = Topic :: Software Development :: Libraries Topic :: Software Development :: Libraries :: Python Modules License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) - Programming Language :: Python :: 2 - Programming Language :: Python :: 2.7 - Programming Language :: Python :: 3 - Programming Language :: Python :: 3.5 - Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Operating System :: OS Independent [options] packages = find: install_requires = - setuptools >=39.2.0 - future >=0.14 - packaging >=15.0 - numpy >=1.13.3, !=1.14.0, !=1.14.1, !=1.14.2 - scipy >=0.14 -python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.* + setuptools >=65.6 + future >=0.16 + packaging >=17.0 + numpy >=1.19 + scipy >=1.1 +python_requires = >=3.7 tests_require = - pytest >=3.1, <5.0 ; python_version <= "2.7" pytest >=5.4.0 ; python_version >= "3" coverage >=4.0 coveralls