From 1ad6adc428a65952ca8dd979c282999ccf722708 Mon Sep 17 00:00:00 2001 From: William Silversmith Date: Thu, 11 Apr 2024 17:16:23 -0400 Subject: [PATCH] release(1.15.0): adds feature map argument to edf --- .github/workflows/build_wheel.yml | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index c8c2dfe..ee125fe 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -28,13 +28,13 @@ jobs: uses: docker/setup-qemu-action@v1 - name: Build wheels - uses: joerick/cibuildwheel@v2.16.2 + uses: joerick/cibuildwheel@v2.16.5 # to supply options, put them in 'env', like: env: CIBW_ARCHS_LINUX: ${{matrix.arch}} CIBW_BEFORE_BUILD: pip install oldest-supported-numpy setuptools wheel cython CIBW_ARCHS_MACOS: "x86_64 arm64" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v2 with: path: ./wheelhouse/*.whl diff --git a/setup.py b/setup.py index 2fde2d2..23bfe3d 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def read(fname): setuptools.setup( name="dijkstra3d", - version="1.14.0", + version="1.15.0", python_requires=">=3.7,<4.0", setup_requires=['numpy','cython'], ext_modules=[ @@ -54,11 +54,11 @@ def read(fname): "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", "Intended Audience :: Science/Research", "Operating System :: POSIX",