Skip to content

Commit 1fce785

Browse files
committed
[Build] Version bumped to 2.11, CHANGELOG updated, numpy<2 requirement
added.
1 parent 254a19f commit 1fce785

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [2.11.0] - 2024-04-01
6+
### Added
7+
- New special function module.
8+
9+
### Fixed
10+
- Various bug fixes in input module.
11+
512
## [2.10.0] - 2023-11-24
613
### Added
714
- More efficient implementation of read_sfcf

pyerrors/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.11.0-dev"
1+
__version__ = "2.11.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
license="MIT",
2626
packages=find_packages(),
2727
python_requires='>=3.8.0',
28-
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'],
28+
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'],
2929
extras_require={'test': ['pytest', 'pytest-cov', 'pytest-benchmark', 'hypothesis', 'nbmake', 'flake8']},
3030
classifiers=[
3131
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)