diff --git a/packages/compare-images/python/itkwasm-compare-images-emscripten/pyproject.toml b/packages/compare-images/python/itkwasm-compare-images-emscripten/pyproject.toml index 46d3699bf..ea4812c15 100644 --- a/packages/compare-images/python/itkwasm-compare-images-emscripten/pyproject.toml +++ b/packages/compare-images/python/itkwasm-compare-images-emscripten/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -30,7 +29,7 @@ keywords = [ "emscripten", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131", ] diff --git a/packages/compare-images/python/itkwasm-compare-images-wasi/pyproject.toml b/packages/compare-images/python/itkwasm-compare-images-wasi/pyproject.toml index 795abd4fc..3ec1b86da 100644 --- a/packages/compare-images/python/itkwasm-compare-images-wasi/pyproject.toml +++ b/packages/compare-images/python/itkwasm-compare-images-wasi/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -30,7 +29,7 @@ keywords = [ "wasi", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131", "importlib_resources", diff --git a/packages/compare-images/python/itkwasm-compare-images/pyproject.toml b/packages/compare-images/python/itkwasm-compare-images/pyproject.toml index 551716cd7..e1efc21fd 100644 --- a/packages/compare-images/python/itkwasm-compare-images/pyproject.toml +++ b/packages/compare-images/python/itkwasm-compare-images/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -31,7 +30,7 @@ keywords = [ "emscripten", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131", "itkwasm-compare-images-wasi >= 1.0.1; sys_platform != \"emscripten\"", diff --git a/packages/compress-stringify/python/itkwasm-compress-stringify-emscripten/pyproject.toml b/packages/compress-stringify/python/itkwasm-compress-stringify-emscripten/pyproject.toml index 4d276d8e4..b3cb851e6 100644 --- a/packages/compress-stringify/python/itkwasm-compress-stringify-emscripten/pyproject.toml +++ b/packages/compress-stringify/python/itkwasm-compress-stringify-emscripten/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -30,7 +29,7 @@ keywords = [ "emscripten", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131", ] diff --git a/packages/compress-stringify/python/itkwasm-compress-stringify-wasi/pyproject.toml b/packages/compress-stringify/python/itkwasm-compress-stringify-wasi/pyproject.toml index 23904d1fc..d9eb0ef99 100644 --- a/packages/compress-stringify/python/itkwasm-compress-stringify-wasi/pyproject.toml +++ b/packages/compress-stringify/python/itkwasm-compress-stringify-wasi/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -30,7 +29,7 @@ keywords = [ "wasi", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131", "importlib_resources", diff --git a/packages/compress-stringify/python/itkwasm-compress-stringify/pyproject.toml b/packages/compress-stringify/python/itkwasm-compress-stringify/pyproject.toml index 4482d0c3b..aa1374020 100644 --- a/packages/compress-stringify/python/itkwasm-compress-stringify/pyproject.toml +++ b/packages/compress-stringify/python/itkwasm-compress-stringify/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -31,7 +30,7 @@ keywords = [ "emscripten", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131", "itkwasm-compress-stringify-wasi; sys_platform != \"emscripten\"", diff --git a/packages/core/python/itkwasm/itkwasm/__init__.py b/packages/core/python/itkwasm/itkwasm/__init__.py index bd795f7ce..8ae9b2ca1 100644 --- a/packages/core/python/itkwasm/itkwasm/__init__.py +++ b/packages/core/python/itkwasm/itkwasm/__init__.py @@ -1,6 +1,6 @@ """itkwasm: Python interface to itk-wasm WebAssembly modules.""" -__version__ = "1.0b142" +__version__ = "1.0b145" from .interface_types import InterfaceTypes from .image import Image, ImageType diff --git a/packages/core/python/itkwasm/pyproject.toml b/packages/core/python/itkwasm/pyproject.toml index ce299be37..080d33433 100644 --- a/packages/core/python/itkwasm/pyproject.toml +++ b/packages/core/python/itkwasm/pyproject.toml @@ -31,7 +31,7 @@ requires-python = ">=3.8" dependencies = [ "numpy", "typing_extensions", - "wasmtime < 13.0.0; sys_platform != \"emscripten\"", + "wasmtime >= 13.0.2; sys_platform != \"emscripten\"", "importlib_metadata; python_version < \"3.10\"", ] diff --git a/packages/core/python/itkwasm/test/test-accelerator/pyproject.toml b/packages/core/python/itkwasm/test/test-accelerator/pyproject.toml index 5251161ad..a261748a3 100644 --- a/packages/core/python/itkwasm/test/test-accelerator/pyproject.toml +++ b/packages/core/python/itkwasm/test/test-accelerator/pyproject.toml @@ -7,7 +7,7 @@ name = "test-accelerator" license = "Apache-2.0" version = "0.0.1" -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0b82", ] diff --git a/packages/dicom/python/itkwasm-dicom-emscripten/pyproject.toml b/packages/dicom/python/itkwasm-dicom-emscripten/pyproject.toml index fd0fea5cc..063d35103 100644 --- a/packages/dicom/python/itkwasm-dicom-emscripten/pyproject.toml +++ b/packages/dicom/python/itkwasm-dicom-emscripten/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -30,7 +29,7 @@ keywords = [ "emscripten", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131", ] diff --git a/packages/dicom/python/itkwasm-dicom-wasi/pyproject.toml b/packages/dicom/python/itkwasm-dicom-wasi/pyproject.toml index d76a9b561..cadf5839d 100644 --- a/packages/dicom/python/itkwasm-dicom-wasi/pyproject.toml +++ b/packages/dicom/python/itkwasm-dicom-wasi/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -30,7 +29,7 @@ keywords = [ "wasi", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131", "importlib_resources", diff --git a/packages/dicom/python/itkwasm-dicom/pyproject.toml b/packages/dicom/python/itkwasm-dicom/pyproject.toml index ec81dbbd2..db80d1731 100644 --- a/packages/dicom/python/itkwasm-dicom/pyproject.toml +++ b/packages/dicom/python/itkwasm-dicom/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -31,7 +30,7 @@ keywords = [ "emscripten", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131", "itkwasm-dicom-wasi; sys_platform != \"emscripten\"", diff --git a/src/bindgen/python/resources/template.pyproject.toml b/src/bindgen/python/resources/template.pyproject.toml index de250972a..e93e7f14f 100644 --- a/src/bindgen/python/resources/template.pyproject.toml +++ b/src/bindgen/python/resources/template.pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -29,7 +28,7 @@ keywords = [ "webassembly",@bindgenKeywords@ ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "itkwasm >= 1.0.b131",@bindgenDependencies@ ]