Skip to content

Commit 6b13be8

Browse files
committed
Test more pre..
1 parent d5fa2cc commit 6b13be8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci_pre_pip.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [ 3.9, "3.10" ]
17+
python-version: [ 3.9, "3.10", "3.11", "3.12" ]
1818

1919
steps:
2020
- uses: actions/checkout@v4
@@ -32,6 +32,12 @@ jobs:
3232
pip install pymoose --pre
3333
pip list
3434
35+
- name: Install numpy < 2 if necessary...
36+
if: ${{ matrix.python-version == '3.11' }}
37+
run: |
38+
pip install "numpy<2"
39+
pip list
40+
3541
- name: Test Moose files
3642
run: |
3743
python tests/python/test_function.py

0 commit comments

Comments
 (0)