mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 14:50:25 +01:00
[Build] Version bumped to 2.11, CHANGELOG updated, numpy<2 requirement
added.
This commit is contained in:
parent
254a19f321
commit
1fce785597
3 changed files with 9 additions and 2 deletions
|
@ -2,6 +2,13 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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
|
## [2.10.0] - 2023-11-24
|
||||||
### Added
|
### Added
|
||||||
- More efficient implementation of read_sfcf
|
- More efficient implementation of read_sfcf
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = "2.11.0-dev"
|
__version__ = "2.11.0"
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -25,7 +25,7 @@ setup(name='pyerrors',
|
||||||
license="MIT",
|
license="MIT",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
python_requires='>=3.8.0',
|
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']},
|
extras_require={'test': ['pytest', 'pytest-cov', 'pytest-benchmark', 'hypothesis', 'nbmake', 'flake8']},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
|
|
Loading…
Add table
Reference in a new issue