From e67d30b5bb9e4bc8f946178b027b08ed366e08e9 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Thu, 21 Sep 2023 07:09:26 -0400 Subject: [PATCH] build: constrain wasmtime-py to < 13.0.0 Re: https://github.com/bytecodealliance/wasmtime-py/issues/189 --- packages/core/python/itkwasm/itkwasm/__init__.py | 2 +- packages/core/python/itkwasm/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/python/itkwasm/itkwasm/__init__.py b/packages/core/python/itkwasm/itkwasm/__init__.py index b71c10e3c..49e1d28b6 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.0b131" +__version__ = "1.0b140" 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 9dd4bd59b..46c800e8c 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; sys_platform != \"emscripten\"", + "wasmtime <= 13.0.0; sys_platform != \"emscripten\"", "importlib_metadata; python_version < \"3.10\"", ]