Skip to content

Commit

Permalink
COMP: Constrain CI python to 3.9
Browse files Browse the repository at this point in the history
Avoid >3.9 for now, which appears to have issues with pydicom_seg.
  • Loading branch information
thewtex committed Jan 8, 2025
1 parent a09ed1e commit 53901c0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/notebook-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Test notebooks with nbmake
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9']
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -33,11 +33,5 @@ jobs:
python3 -m pip install "itk>=5.3.0"
- name: Test notebooks
if: ${{ matrix.python-version != '3.8' }}
run: |
pytest --nbmake --nbmake-timeout=3000 examples/EnvironmentCheck.ipynb examples/Hello3DWorld.ipynb examples/NumPyArrayPointSet.ipynb examples/integrations/**/*.ipynb
- name: Test notebooks
if: ${{ matrix.python-version == '3.8' }}
run: |
pytest --nbmake --nbmake-timeout=3000 examples/Hello3DWorld.ipynb examples/NumPyArrayPointSet.ipynb examples/integrations/**/*.ipynb

0 comments on commit 53901c0

Please sign in to comment.