Skip to content

Commit

Permalink
Ensure numpy<2 when pandas<2
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindjahren committed Aug 2, 2024
1 parent 87488bc commit b59ee67
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/res2df.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ jobs:
run: |
pip install --upgrade pip
pip install .
- name: Install numpy<2 if pandas<2
if: matrix.pandas-version == 'pandas<2'
run: pip install "numpy<2"

- name: Check pandas version
run: |
pip install "${{matrix.pandas-version}}"
python -c "import res2df"
Expand Down

0 comments on commit b59ee67

Please sign in to comment.