Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:
workflow_dispatch:

env:
conda_version: 4.12.0
conda_build_version: 3.21.8
conda_version: 23.3.1
conda_build_version: 3.24.0
jobs:
set-anaconda-tag:
runs-on: ubuntu-latest
Expand All @@ -29,7 +29,7 @@ jobs:
build-windows:
strategy:
matrix:
python_version: ['3.7', '3.8', '3.9', '3.10']
python_version: ['3.7', '3.8', '3.9', '3.10', '3.11']
runs-on: windows-2019

steps:
Expand Down
12 changes: 6 additions & 6 deletions recipe/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set CXXFLAGS=/MP
set CFLAGS=/MP

REM Configure Step
cmake -T "v141,host=x64" -G "Visual Studio 16 2019" ^
cmake -T "v142,host=x64" -G "Visual Studio 16 2019" ^
-D SimpleITK_BUILD_DISTRIBUTE:BOOL=ON ^
-D BUILD_SHARED_LIBS:BOOL=OFF ^
-D BUILD_TESTING:BOOL=OFF ^
Expand All @@ -19,11 +19,11 @@ cmake -T "v141,host=x64" -G "Visual Studio 16 2019" ^
-D WRAP_PYTHON:BOOL=ON ^
-D SimpleITK_USE_SYSTEM_SWIG:BOOL=ON ^
-D SimpleITK_PYTHON_USE_VIRTUALENV:BOOL=OFF ^
-D ITK_USE_SYSTEM_JPEG:BOOL=ON ^
-D ITK_USE_SYSTEM_PNG:BOOL=ON ^
-D ITK_USE_SYSTEM_TIFF:BOOL=ON ^
-D ITK_USE_SYSTEM_ZLIB:BOOL=ON ^
-D Module_ITKTBB:BOOL=ON ^
-D ITK_USE_SYSTEM_JPEG:BOOL=OFF ^
-D ITK_USE_SYSTEM_PNG:BOOL=OFF ^
-D ITK_USE_SYSTEM_TIFF:BOOL=OFF ^
-D ITK_USE_SYSTEM_ZLIB:BOOL=OFF ^
-D Module_ITKTBB:BOOL=OFF ^
-D "CMAKE_FIND_ROOT_PATH:PATH=%PREFIX%" ^
-D "CMAKE_FIND_ROOT_PATH_MODE_INCLUDE:STRING=ONLY" ^
-D "CMAKE_FIND_ROOT_PATH_MODE_LIBRARY:STRING=ONLY" ^
Expand Down
22 changes: 11 additions & 11 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "simpleitk" %}
{% set version = "2.2.1" %}
{% set build_number = 0 %}
{% set build_number = 1 %}

package:
name: simpleitk
Expand All @@ -25,20 +25,20 @@ requirements:
host:
- python
- setuptools
- libtiff
- libpng
- jpeg
- zlib
- tbb-devel
- libtiff # [not win]
- libpng # [not win]
- jpeg # [not win]
- zlib # [not win]
- tbb-devel # [not win]

run:
- vs2015_runtime # [win]
- python
- {{ pin_compatible('libtiff', max_pin='x.x') }}
- {{ pin_compatible('libpng', max_pin='x.x') }}
- {{ pin_compatible('jpeg', max_pin='x') }}
- {{ pin_compatible('zlib', max_pin='x.x') }}
- tbb
- {{ pin_compatible('libtiff', max_pin='x.x') }} # [not win]
- {{ pin_compatible('libpng', max_pin='x.x') }} # [not win]
- {{ pin_compatible('jpeg', max_pin='x') }} # [not win]
- {{ pin_compatible('zlib', max_pin='x.x') }} # [not win]
- tbb # [not win]

test:
imports:
Expand Down