build weels updated

This commit is contained in:
Nicolas 2025-10-08 23:01:26 +02:00
parent 779ec78a9b
commit 86365a7b37
2 changed files with 7 additions and 5 deletions

View File

@ -57,16 +57,18 @@ jobs:
with:
platforms: all
- name: Install dependencies
run: python -m pip install --upgrade pip cibuildwheel setuptools wheel pytest
#- name: Install dependencies
# run: python -m pip install --upgrade pip cibuildwheel setuptools wheel pytest
- name: Build wheels
run: cibuildwheel --output-dir wheelhouse
# run: cibuildwheel --output-dir wheelhouse
uses: pypa/cibuildwheel@v3
env:
# Multi-arch builds
CIBW_ARCHS_LINUX: "x86_64 aarch64"
CIBW_ARCHS_MACOS: "universal2" # x86_64 arm64
CIBW_ARCHS_WINDOWS: "AMD64 x86"
CIBW_ARCHS_WINDOWS: "AMD64" # x86
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/tests/test_coparun_module.py"
- uses: actions/upload-artifact@v4

View File

@ -13,7 +13,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"pelfy>=1.0.3",
"pelfy>=1.0.3"
]
[project.urls]