Skip to content

Commit

Permalink
Change version of pydicom
Browse files Browse the repository at this point in the history
For python < 3.10 pydicom 3.0 is not available
'ITK is now > 5.4'
  • Loading branch information
tbaudier committed Oct 31, 2024
1 parent 7894042 commit 24d8099
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
ITK_VERSION: [5.3.0, pre]

steps:
- name: Checkout github repo
Expand All @@ -33,10 +32,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ ${{ matrix.ITK_VERSION }} == 'pre' ];
then pip install itk --pre;
else pip install itk==${{ matrix.ITK_VERSION }};
fi
pip install itk
pip install -e .
pip install uproot3
pip freeze
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'click',
'numpy',
'scipy',
'pydicom>=3.0.0',
'pydicom',
'tqdm',
'colored',
'itk>=5.2.0',
Expand Down

0 comments on commit 24d8099

Please sign in to comment.