From 80d6b80b2fbe9155866fe65c4f988a39a362e71b Mon Sep 17 00:00:00 2001 From: Mathew Seng Date: Fri, 13 Nov 2020 09:38:15 -0600 Subject: [PATCH] ENH: Update supported Python versions for package builds 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 --- .github/workflows/build-test-package.yml | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 677f610..2ac455f 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -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" @@ -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" diff --git a/setup.py b/setup.py index d6c711c..b84b400 100644 --- a/setup.py +++ b/setup.py @@ -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' ] )