Skip to content

Commit 8509a19

Browse files
committed
More tests
1 parent 6b13be8 commit 8509a19

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci_pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: [ 3.9, "3.10", "3.11",] # not yet working: "3.12"
18+
python-version: [ 3.9, "3.10"] # not yet working: "3.11"+
1919

2020
steps:
2121
- uses: actions/checkout@v4

.github/workflows/ci_pre_pip.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ jobs:
3333
pip list
3434
3535
- name: Install numpy < 2 if necessary...
36-
if: ${{ matrix.python-version == '3.11' }}
3736
run: |
38-
pip install "numpy<2"
37+
if [[ ${{ matrix.python-version }} == '3.11' ]] || [[ ${{ matrix.python-version }} == '3.12' ]]; then pip install "numpy<2" ; fi ;
3938
pip list
4039
4140
- name: Test Moose files

0 commit comments

Comments
 (0)