Skip to content

Commit 0c52fd3

Browse files
release(1.4.1): rebuild for numpy 2.0
1 parent 40fb106 commit 0c52fd3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build_wheel.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,20 @@ jobs:
2424
if: ${{ matrix.arch == 'aarch64' }}
2525
uses: docker/setup-qemu-action@v2
2626

27+
- name: Create virtual environment
28+
run: python -m venv venv
29+
30+
- name: Activate virtual environment
31+
run: source venv/bin/activate
32+
2733
- name: Install CMake
2834
uses: ssrobins/install-cmake@v1
2935

3036
- name: Build wheels
3137
uses: pypa/[email protected]
3238
# to supply options, put them in 'env', like:
3339
env:
34-
CIBW_BEFORE_BUILD: git submodule init && git submodule update && pip install cython numpy scikit-build
40+
CIBW_BEFORE_BUILD: git submodule init && git submodule update && pip install --user --break-system-packages cython numpy scikit-build
3541
CPPFLAGS: -I/usr/local/opt/zlib/include
3642
LDFLAGS: -L/usr/local/opt/zlib/lib
3743
CIBW_ARCHS_MACOS: "x86_64 arm64"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def read(fname):
8080

8181
setup(
8282
name='DracoPy',
83-
version='1.4.0',
83+
version='1.4.1',
8484
description = 'Python wrapper for Google\'s Draco Mesh Compression Library',
8585
author = 'Manuel Castro, William Silversmith :: Contributors :: Fatih Erol, Faru Nuri Sonmez, Zeyu Zhao, Denis Riviere',
8686

0 commit comments

Comments
 (0)