From 1fce785597bca9e49ff8f18c4c6fbec70b6a2020 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 1 Apr 2024 16:13:48 +0200 Subject: [PATCH] [Build] Version bumped to 2.11, CHANGELOG updated, numpy<2 requirement added. --- CHANGELOG.md | 7 +++++++ pyerrors/version.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34ab567f..84c31fbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyerrors/version.py b/pyerrors/version.py index ee4b2658..7f6646a7 100644 --- a/pyerrors/version.py +++ b/pyerrors/version.py @@ -1 +1 @@ -__version__ = "2.11.0-dev" +__version__ = "2.11.0" diff --git a/setup.py b/setup.py index da240d16..0d9ed3e7 100644 --- a/setup.py +++ b/setup.py @@ -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',