Skip to content

Commit c299b83

Browse files
committed
Use numpy<2 with pandas<2
1 parent ba57c8e commit c299b83

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,13 @@ jobs:
4242
matrix:
4343
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
4444
pandas-version: [latest]
45+
numpy-version: [latest]
4546
include:
4647
- python-version: 3.7
4748
pandas-version: '<1.0'
4849
- python-version: 3.9
4950
pandas-version: '<2.0'
51+
numpy-version: '<2.0'
5052
- python-version: "3.12"
5153
pandas-version: pre
5254
polars: true
@@ -77,6 +79,9 @@ jobs:
7779
- name: Install pandas ${{ matrix.pandas-version }}
7880
if: matrix.pandas-version != 'pre' && matrix.pandas-version != 'latest'
7981
run: pip install 'pandas${{ matrix.pandas-version }}'
82+
- name: Install numpy ${{ matrix.numpy-version }}
83+
if: matrix.numpy-version != 'latest'
84+
run: pip install 'numpy${{ matrix.numpy-version }}'
8085

8186
- name: Install polars
8287
if: matrix.polars

0 commit comments

Comments
 (0)