1
0
Fork 0
mirror of https://github.com/fjosw/pyerrors.git synced 2025-03-15 23:00:25 +01:00

build: version bumped to 2.8.1, numpy versions >=1.25 excluded.

This commit is contained in:
Fabian Joswig 2023-06-01 13:35:15 +01:00
parent ff2d4c23e8
commit 07c8a1b71d
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
__version__ = "2.8.0"
__version__ = "2.8.1"

View file

@ -25,7 +25,7 @@ setup(name='pyerrors',
license="MIT",
packages=find_packages(),
python_requires='>=3.7.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'],
install_requires=['numpy>=1.21,<1.25', '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=[
'Development Status :: 5 - Production/Stable',