From 8708637868544d5f4ba559a122d820ddf728d969 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 29 Sep 2022 08:52:36 +0100 Subject: [PATCH] build: required autograd version increased to 1.5 in view of the upcoming python 3.11 release. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4e3326ef..5b1a8a55 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup(name='pyerrors', license="MIT", packages=find_packages(), python_requires='>=3.6.0', - install_requires=['numpy>=1.19', 'autograd>=1.4', 'numdifftools', 'matplotlib>=3.3', 'scipy>=1.5', 'iminuit>=2', 'h5py>=3', 'lxml>=4', 'python-rapidjson>=1', 'pandas>=1.1', 'pysqlite3>=0.4'], + install_requires=['numpy>=1.19', 'autograd>=1.5', 'numdifftools', 'matplotlib>=3.3', 'scipy>=1.5', 'iminuit>=2', 'h5py>=3', 'lxml>=4', 'python-rapidjson>=1', 'pandas>=1.1', 'pysqlite3>=0.4'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Science/Research',