Skip to content

Commit 1ad6adc

Browse files
release(1.15.0): adds feature map argument to edf
1 parent 219170e commit 1ad6adc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_wheel.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
uses: docker/setup-qemu-action@v1
2929

3030
- name: Build wheels
31-
uses: joerick/cibuildwheel@v2.16.2
31+
uses: joerick/cibuildwheel@v2.16.5
3232
# to supply options, put them in 'env', like:
3333
env:
3434
CIBW_ARCHS_LINUX: ${{matrix.arch}}
3535
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy setuptools wheel cython
3636
CIBW_ARCHS_MACOS: "x86_64 arm64"
3737

38-
- uses: actions/upload-artifact@v4
38+
- uses: actions/upload-artifact@v2
3939
with:
4040
path: ./wheelhouse/*.whl

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def read(fname):
2323

2424
setuptools.setup(
2525
name="dijkstra3d",
26-
version="1.14.0",
26+
version="1.15.0",
2727
python_requires=">=3.7,<4.0",
2828
setup_requires=['numpy','cython'],
2929
ext_modules=[
@@ -54,11 +54,11 @@ def read(fname):
5454
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
5555
"Programming Language :: Python",
5656
"Programming Language :: Python :: 3",
57-
"Programming Language :: Python :: 3.7",
5857
"Programming Language :: Python :: 3.8",
5958
"Programming Language :: Python :: 3.9",
6059
"Programming Language :: Python :: 3.10",
6160
"Programming Language :: Python :: 3.11",
61+
"Programming Language :: Python :: 3.12",
6262
"Topic :: Scientific/Engineering",
6363
"Intended Audience :: Science/Research",
6464
"Operating System :: POSIX",

0 commit comments

Comments
 (0)