Skip to content

Commit d1dc778

Browse files
authored
Merge pull request #29 from thewtex/package-version
BUG: Package version
2 parents a2f1465 + 4ac658d commit d1dc778

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
matrix:
131131
python-version: [35, 36, 37, 38]
132132
include:
133-
- itk-python-git-tag: "v5.1.0"
133+
- itk-python-git-tag: "v5.1.0.post2"
134134

135135
steps:
136136
- uses: actions/checkout@v2
@@ -166,7 +166,7 @@ jobs:
166166
max-parallel: 2
167167
matrix:
168168
include:
169-
- itk-python-git-tag: "v5.1.0"
169+
- itk-python-git-tag: "v5.1.0.post2"
170170

171171
steps:
172172
- uses: actions/checkout@v2
@@ -195,7 +195,7 @@ jobs:
195195
matrix:
196196
python-version-minor: [5, 6, 7, 8]
197197
include:
198-
- itk-python-git-tag: "v5.1.0"
198+
- itk-python-git-tag: "v5.1.0.post2"
199199

200200
steps:
201201
- uses: actions/checkout@v2
@@ -228,7 +228,7 @@ jobs:
228228
set PATH="C:\P\grep;%PATH%"
229229
set CC=cl.exe
230230
set CXX=cl.exe
231-
C:\Python3${{ matrix.python-version-minor }}-x64\python.exe C:\P\IPP\scripts\windows_build_module_wheels.py --py-envs "3${{ matrix.python-version-minor }}-x64"
231+
C:\Python3${{ matrix.python-version-minor }}-x64\python.exe C:\P\IPP\scripts\windows_build_module_wheels.py --py-envs "3${{ matrix.python-version-minor }}-x64" --no-cleanup
232232
233233
- name: Publish Python package as GitHub Artifact
234234
uses: actions/upload-artifact@v1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='itk-subdivisionquadedgemeshfilter',
16-
version='1.0.0',
16+
version='1.1.0',
1717
author='Wanlin Zhu',
1818
author_email='[email protected]',
1919
packages=['itk'],
@@ -48,6 +48,6 @@
4848
keywords='ITK InsightToolkit Geometry Mesh',
4949
url=r'https://github.com/InsightSoftwareConsortium/ITKSubdivisionQuadEdgeMeshFilter',
5050
install_requires=[
51-
r'itk'
51+
r'itk>=5.1.0.post2'
5252
]
5353
)

0 commit comments

Comments
 (0)