Skip to content

Commit 60fbfd5

Browse files
committed
ENH: update minimum Python version from 3.5 to 3.6
1 parent 30e53f2 commit 60fbfd5

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/build-test-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
strategy:
136136
max-parallel: 2
137137
matrix:
138-
python-version: [35, 36, 37, 38]
138+
python-version: [36, 37, 38]
139139
include:
140140
- itk-python-git-tag: "v5.1.1"
141141

@@ -216,7 +216,7 @@ jobs:
216216
strategy:
217217
max-parallel: 2
218218
matrix:
219-
python-version-minor: [5, 6, 7, 8]
219+
python-version-minor: [6, 7, 8]
220220
include:
221221
- itk-python-git-tag: "v5.1.1"
222222

{{cookiecutter.project_name}}/.github/workflows/build-test-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
strategy:
129129
max-parallel: 2
130130
matrix:
131-
python-version: [35, 36, 37, 38]
131+
python-version: [36, 37, 38]
132132
include:
133133
- itk-python-git-tag: "v5.1.1"
134134

@@ -193,7 +193,7 @@ jobs:
193193
strategy:
194194
max-parallel: 2
195195
matrix:
196-
python-version-minor: [5, 6, 7, 8]
196+
python-version-minor: [6, 7, 8]
197197
include:
198198
- itk-python-git-tag: "v5.1.1"
199199

{{cookiecutter.project_name}}/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import print_function
32
from os import sys
43

54
try:
@@ -44,6 +43,6 @@
4443
keywords='ITK InsightToolkit',
4544
url=r'https://itk.org/',
4645
install_requires=[
47-
r'itk>=5.1.0.post3'
46+
r'itk>=5.1.1'
4847
]
4948
)

0 commit comments

Comments
 (0)