Skip to content

Commit

Permalink
[Build] Version bumped to 2.11, CHANGELOG updated, numpy<2 requirement
Browse files Browse the repository at this point in the history
added.
  • Loading branch information
fjosw committed Apr 1, 2024
1 parent 254a19f commit 1fce785
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyerrors/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.11.0-dev"
__version__ = "2.11.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
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',
Expand Down

0 comments on commit 1fce785

Please sign in to comment.