Skip to content

Commit

Permalink
CI: use numpy<2.0.0 for older pandas versions (#431)
Browse files Browse the repository at this point in the history
* CI: use numpy<2.0.0 for older pandas versions

* Add extra block for numpy downgrading
  • Loading branch information
hagenw authored Jun 19, 2024
1 parent 1ef4317 commit 839d86e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install numpy<2.0.0 for pandas==2.0.3
run: |
pip install "numpy<2.0.0"
if: matrix.pandas == 'pandas==2.0.3'

- name: Install requested pandas version
run: |
pip install "${{ matrix.pandas }}"
Expand Down

0 comments on commit 839d86e

Please sign in to comment.