Skip to content

Commit add9cb6

Browse files
committed
Merge remote-tracking branch 'upstream/master' into release
2 parents 38da7e2 + 43c5295 commit add9cb6

6 files changed

+12
-9
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cache:
88
- $HOME/docker
99

1010
before_install:
11-
- pip install -U scikit-ci-addons
11+
- sudo pip install -U scikit-ci-addons
1212
- ci_addons docker load-pull-save r.j3ss.co/shellcheck
1313

1414
script:

docs/Build_ITK_Module_Python_packages.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,12 @@ These services use the configurations generated by the `ITKModuleTemplate <https
5252
Linux Python package wheel links can be found in the CircleCI *Artifacts*
5353
tab after expanding the available folders.
5454

55-
.. figure:: https://i.imgur.com/Yw3ziU7.png
55+
.. figure:: https://imgur.com/tHMhTII.png
5656
:alt: TravisCI Python wheels
5757

58-
macOS Python package wheels can be downloaded by going to the `transfer.sh`
59-
link found in the build output.
58+
macOS Python package wheels can be downloaded by visiting to the `file.io`
59+
link found in the build output. Note: this link may only be valid for the
60+
initial download.
6061

6162
.. figure:: http://imgur.com/Cj5vs3S.png
6263
:alt: AppVeyor Python wheels

scripts/dockcross-manylinux-download-cache-and-build-module-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ wget -L https://data.kitware.com/api/v1/file/592dd8068d777f16d01e1a92/download -
77
gunzip -d zstd-1.2.0-linux.tar.gz
88
tar xf zstd-1.2.0-linux.tar
99

10-
curl -L https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/v4.13.0/ITKPythonBuilds-linux.tar.zst -O
10+
curl -L https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/${ITK_PACKAGE_VERSION:=v5.0a01}/ITKPythonBuilds-linux.tar.zst -O
1111
./zstd-1.2.0-linux/bin/unzstd ITKPythonBuilds-linux.tar.zst -o ITKPythonBuilds-linux.tar
1212
tar xf ITKPythonBuilds-linux.tar
1313

scripts/macpython-build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,5 +181,5 @@ for VENV in "${VENVS[@]}"; do
181181
(cd $HOME && ${VENV}/bin/python -c 'import itk;')
182182
(cd $HOME && ${VENV}/bin/python -c 'import itk; image = itk.Image[itk.UC, 2].New()')
183183
(cd $HOME && ${VENV}/bin/python -c 'import itkConfig; itkConfig.LazyLoading = False; import itk;')
184-
(cd $HOME && ${PYBIN}/python ${SCRIPT_DIR}/../docs/code/testDriver.py )
184+
(cd $HOME && ${VENV}/bin/python ${SCRIPT_DIR}/../docs/code/testDriver.py )
185185
done

scripts/macpython-download-cache-and-build-module-wheels.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
brew update
77
brew install zstd aria2 gnu-tar doxygen
8-
aria2c -c --file-allocation=none -o ITKPythonBuilds-macosx.tar.zst -s 10 -x 10 https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/${ITK_PACKAGE_VERSION:=v4.13.0}/ITKPythonBuilds-macosx.tar.zst
8+
brew upgrade cmake
9+
aria2c -c --file-allocation=none -o ITKPythonBuilds-macosx.tar.zst -s 10 -x 10 https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/${ITK_PACKAGE_VERSION:=v5.0a01}/ITKPythonBuilds-macosx.tar.zst
910
unzstd ITKPythonBuilds-macosx.tar.zst -o ITKPythonBuilds-macosx.tar
1011
PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH"
1112
tar xf ITKPythonBuilds-macosx.tar --checkpoint=10000 --checkpoint-action=dot

scripts/windows-download-cache-and-build-module-wheels.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
trap { Write-Error $_; Exit 1 }
22

3-
set-alias sz "$env:ProgramFiles\7-Zip\7z.exe"
3+
set-alias sz "$env:ProgramFiles\7-Zip\7z.exe"
44
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/scikit-build/scikit-ci-addons/master/windows/install-python.ps1'))
5-
Invoke-WebRequest -Uri "https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/v4.13.0/ITKPythonBuilds-windows.zip" -OutFile "ITKPythonBuilds-windows.zip"
5+
if (-not (Test-Path env:ITK_PACKAGE_VERSION)) { $env:ITK_PACKAGE_VERSION = 'v5.0a01' }
6+
Invoke-WebRequest -Uri "https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/$env:ITK_PACKAGE_VERSION/ITKPythonBuilds-windows.zip" -OutFile "ITKPythonBuilds-windows.zip"
67
sz x ITKPythonBuilds-windows.zip -oC:\P -aoa -r
78
Invoke-WebRequest -Uri "http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.11.windows.bin.zip" -OutFile "doxygen-1.8.11.windows.bin.zip"
89
sz x doxygen-1.8.11.windows.bin.zip -oC:\P\doxygen -aoa -r

0 commit comments

Comments
 (0)