Skip to content

Commit

Permalink
ENH: Update supported Python versions for package builds
Browse files Browse the repository at this point in the history
This minimum version has been bumped from 3.5 to 3.6. The maximum has been bumped from 3.8 to 3.9. In order to enable this, the ITK version has been bumped to 5.1.1 in setup.py
  • Loading branch information
mseng10 authored and sudomakeinstall committed Nov 30, 2020
1 parent 0eb6f99 commit 80d6b80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: [35, 36, 37, 38]
python-version: [36, 37, 38, 39]
include:
- itk-python-git-tag: "v5.1.1.post1"

Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version-minor: [5, 6, 7, 8]
python-version-minor: [6, 7, 8, 9]
include:
- itk-python-git-tag: "v5.1.1.post1"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
keywords='ITK InsightToolkit Mesh Noise',
url=r'https://github.com/InsightSoftwareConsortium/ITKMeshNoise',
install_requires=[
r'itk'
r'itk>=5.1.1'
]
)

0 comments on commit 80d6b80

Please sign in to comment.