From aafabfb35257573631e621b7233bb6277ef3b367 Mon Sep 17 00:00:00 2001 From: William Silversmith Date: Wed, 9 Oct 2024 14:35:39 -0400 Subject: [PATCH] release(3.19.0): support for binary_image argument --- .github/workflows/build_wheel.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index 1be6b41..53c26c0 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -35,6 +35,6 @@ jobs: CIBW_BEFORE_BUILD: pip install numpy CIBW_ARCHS_MACOS: "x86_64 arm64" - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: path: ./wheelhouse/*.whl diff --git a/setup.py b/setup.py index 994a93c..345da18 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def requirements(): setuptools.setup( name="connected-components-3d", - version="3.18.0", + version="3.19.0", setup_requires=['pbr', 'numpy', 'cython'], install_requires=['numpy'], python_requires=">=3.8,<4.0",