Skip to content

Commit

Permalink
Use numpy<2 in CI
Browse files Browse the repository at this point in the history
It's probably pthelma that should be specifying numpy<2, because its
wheels only support that, but we'll likely wait until gdal improves on
that so that we can actually use numpy>=2.
  • Loading branch information
aptiko committed Dec 4, 2024
1 parent 9f98ccb commit dc5176a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
sudo -u postgres psql -U postgres -c "create database openmeteo owner runner"
python -m pip install --upgrade pip 'setuptools<58' # See https://stackoverflow.com/questions/69123406
CPLUS_INCLUDE_PATH=/usr/include/gdal C_INCLUDE_PATH=/usr/include/gdal pip install 'gdal==3.4.1'
pip install 'psycopg2>=2.9,<3' codecov coverage isort flake8 'black<25'
pip install 'psycopg2>=2.9,<3' codecov coverage isort flake8 'black<25' 'numpy<2'
pip install -r requirements.txt
pip install -r requirements-dev.txt
npm install
Expand Down

0 comments on commit dc5176a

Please sign in to comment.