From 21def4aad1b768be1ead3b50557f30efb7c0138b Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Sun, 21 May 2023 17:11:14 +0100 Subject: [PATCH] build: python 3.7 removed from setup.py --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 37a56f51..f503358a 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup(name='pyerrors', author_email='fabian.joswig@ed.ac.uk', license="MIT", packages=find_packages(), - python_requires='>=3.7.0', + python_requires='>=3.8.0', install_requires=['numpy>=1.21', 'autograd>=1.5', 'numdifftools>=0.9.41', 'matplotlib>=3.5', 'scipy>=1.7', 'iminuit>=2.17', 'h5py>=3.8', 'lxml>=4.9', 'python-rapidjson>=1.9', 'pandas>=1.1'], extras_require={'test': ['pytest', 'pytest-cov', 'pytest-benchmark', 'hypothesis']}, classifiers=[ @@ -32,7 +32,6 @@ setup(name='pyerrors', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10',