Skip to content

Commit 818cde2

Browse files
committed
COMP: Constrain CI python to 3.9, 3.12
Avoid 3.10, which appears to have issues with pydicom_seg.
1 parent a09ed1e commit 818cde2

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/notebook-test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Test notebooks with nbmake
99
strategy:
1010
matrix:
11-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
11+
python-version: ['3.9', '3.12']
1212
steps:
1313
- uses: actions/checkout@v3
1414
with:
@@ -33,11 +33,5 @@ jobs:
3333
python3 -m pip install "itk>=5.3.0"
3434
3535
- name: Test notebooks
36-
if: ${{ matrix.python-version != '3.8' }}
3736
run: |
3837
pytest --nbmake --nbmake-timeout=3000 examples/EnvironmentCheck.ipynb examples/Hello3DWorld.ipynb examples/NumPyArrayPointSet.ipynb examples/integrations/**/*.ipynb
39-
40-
- name: Test notebooks
41-
if: ${{ matrix.python-version == '3.8' }}
42-
run: |
43-
pytest --nbmake --nbmake-timeout=3000 examples/Hello3DWorld.ipynb examples/NumPyArrayPointSet.ipynb examples/integrations/**/*.ipynb

0 commit comments

Comments
 (0)