Skip to content

Commit 6d38d9c

Browse files
committed
Fix release tag and remove useless before build
cibuildwheel already install dependencies during the process.
1 parent b558b41 commit 6d38d9c

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ jobs:
2222
with:
2323
file: ./wheelhouse/*.whl
2424
overwrite: true
25-
update_latest_release: true
25+
draft: false
26+
update_latest_release: true
27+
tag_name: v0.6.1

pyproject.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11
[build-system]
2-
requires = ["setuptools", "wheel", "numpy", "Cython"]
2+
requires = ["setuptools", "wheel", "oldest-supported-numpy", "Cython"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.cibuildwheel]
66
skip = "pp*"
7-
before-build = "pip install -r blender_requirements.txt"
87
manylinux-x86_64-image = "manylinux_2_24"
8+
test-requires = "pytest"
9+
test-command = "pytest {package}/test"
910

1011
[tool.cibuildwheel.linux]
1112
before-all = "bash build_dependencies/install_linux.sh"
1213
archs = ["x86_64"]
1314

1415
[tool.cibuildwheel.macos]
1516
before-all = "bash build_dependencies/install_macos.sh"
16-
test-requires = "pytest"
17-
test-command = "pytest {package}/test"
1817

1918
[tool.cibuildwheel.windows]
2019
before-all = "powershell build_dependencies\\install_windows_ci.ps1"
21-
archs = ["AMD64"]
22-
test-requires = "pytest"
23-
test-command = "pytest {package}\\test"
20+
archs = ["AMD64"]

0 commit comments

Comments
 (0)