diff --git a/CHANGELOG.md b/CHANGELOG.md index 55e6cbd..a380d1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ +## Version 1.3.1 (TBD) + ### 👷 Bug fixes + - Pin version of Numpy to be < 2.0.0 because `trapz` is renamed in higher versions + - Pin version of Scipy to be < 1.14.0 because `mvnun` is deprecated in higher versions + ## Version 1.3 (18/03/2024) ### 🎉 New Features - Add support for pandas 2.X branch -### 👷 Bug fixes - - Pin version of Numpy to be < 2.0.0 because `trapz` is renamed in higher versions - ## Version 1.2 (15/3/2024) ### 🎉 New Features - Add support for python 3.12 diff --git a/CITATION.cff b/CITATION.cff index 03ad183..2e5fa50 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,7 +8,7 @@ type: software license: 'GPL-3.0-or-later' repository-code: "https://resourcecode-project.github.io/py-resourcecode/" url: "https://resourcecode-project.github.io/py-resourcecode/" -version: 1.1.3 +version: 1.3.1 date-released: '2023-03-18' authors: - given-names: Nicolas diff --git a/resourcecode/__version__.py b/resourcecode/__version__.py index 00579d7..c856d37 100644 --- a/resourcecode/__version__.py +++ b/resourcecode/__version__.py @@ -17,5 +17,5 @@ # You should have received a copy of the GNU General Public License along # with Resourcecode. If not, see . -numversion = (1, 1, 3) +numversion = (1, 3, 1) __version__ = ".".join(str(num) for num in numversion) diff --git a/setup.py b/setup.py index b8bc26e..609653a 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ "pandas >= 1.0.0, < 3.0.0", "requests >= 2.23.0", "numpy >= 1.20.1, < 2.0.0", - "scipy >= 1.6.1", + "scipy >= 1.6.1, < 1.14.0", "pyextremes >= 2.0.0", "pytest >= 7.0.0", "pyarrow >= 6.0.0",