Skip to content

Commit

Permalink
upper cap numpy<2.0.0 (#2413)
Browse files Browse the repository at this point in the history
* upper cap numpy<2.0.0

* update changelog

* upper cap tenacity<=8.3.0
  • Loading branch information
dennisbader authored Jun 17, 2024
1 parent 05f6ddf commit e18d332
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ but cannot always guarantee backwards compatibility. Changes that may **break co
- Improvements to unified linting by switch `isort` to Ruff's rule I. [#2339](https://github.com/unit8co/darts/pull/2339) by [Jirka Borovec](https://github.com/borda)
- Improvements to unified linting by switch `pyupgrade` to Ruff's rule UP. [#2340](https://github.com/unit8co/darts/pull/2340) by [Jirka Borovec](https://github.com/borda)
- Improvements to CI, running lint locally via pre-commit instead of particular tools. [#2327](https://github.com/unit8co/darts/pull/2327) by [Jirka Borovec](https://github.com/borda)
- We set an upper version cap on `numpy<2.0.0` until all dependencies have migrated. [#2413](https://github.com/unit8co/darts/pull/2413) by [Dennis Bader](https://github.com/dennisbader).


### For developers of the library:
Expand Down
2 changes: 1 addition & 1 deletion requirements/core.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ holidays>=0.11.1
joblib>=0.16.0
matplotlib>=3.3.0
nfoursid>=1.0.0
numpy>=1.19.0
numpy>=1.19.0,<2.0.0
pandas>=1.0.5,<2.0.0; python_version < "3.9"
pandas>=1.0.5; python_version >= "3.9"
pmdarima>=1.8.0
Expand Down
1 change: 1 addition & 0 deletions requirements/release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ sphinx==5.0.0
sphinx-automodapi==0.14.0
sphinx_autodoc_typehints==1.12.0
twine==3.3.0
tenacity<=8.3.0

0 comments on commit e18d332

Please sign in to comment.