Skip to content

Commit

Permalink
Set numpy<2.0 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
wpreimes committed Jun 17, 2024
1 parent 97d7a46 commit ff31706
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Then the following command should install all dependencies:

.. code-block:: bash
mamba install -c conda-forge numpy scipy pandas netCDF4 cython pyresample
mamba install -c conda-forge 'numpy<2.0.0' scipy pandas netCDF4 cython pyresample
Afterwards ``pytesmo`` can be installed via pip.

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ channels:
- conda-forge
- defaults
dependencies:
- numpy
- numpy<2.0.0
- numba
- scipy>=0.12
- pandas>=0.11.0,!=0.15.2
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ package_dir =
# Add here dependencies of your project (semicolon/line-separated), e.g.
install_requires =
importlib-metadata; python_version<"3.8"
numpy>=1.7.0
numpy>=1.7.0,<2.0.0
scipy>=0.12
pandas>=0.11.0,!=0.15.2
matplotlib>=1.2.0
Expand Down

0 comments on commit ff31706

Please sign in to comment.