[Build] Version bumped to 2.11, CHANGELOG updated, numpy<2 requirement

added.
This commit is contained in:
Fabian Joswig 2024-04-01 16:13:48 +02:00
parent 254a19f321
commit 1fce785597
3 changed files with 9 additions and 2 deletions

View file

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.
## [2.11.0] - 2024-04-01
### Added
- New special function module.
### Fixed
- Various bug fixes in input module.
## [2.10.0] - 2023-11-24
### Added
- More efficient implementation of read_sfcf

View file

@ -1 +1 @@
__version__ = "2.11.0-dev"
__version__ = "2.11.0"

View file

@ -25,7 +25,7 @@ setup(name='pyerrors',
license="MIT",
packages=find_packages(),
python_requires='>=3.8.0',
install_requires=['numpy>=1.24', 'autograd>=1.6.2', 'numdifftools>=0.9.41', 'matplotlib>=3.7', 'scipy>=1.10', 'iminuit>=2.21', 'h5py>=3.8', 'lxml>=4.9', 'python-rapidjson>=1.10', 'pandas>=2.0'],
install_requires=['numpy>=1.24,<2', 'autograd>=1.6.2', 'numdifftools>=0.9.41', 'matplotlib>=3.7', 'scipy>=1.10', 'iminuit>=2.21', 'h5py>=3.8', 'lxml>=4.9', 'python-rapidjson>=1.10', 'pandas>=2.0'],
extras_require={'test': ['pytest', 'pytest-cov', 'pytest-benchmark', 'hypothesis', 'nbmake', 'flake8']},
classifiers=[
'Development Status :: 5 - Production/Stable',