Skip to content

Commit

Permalink
CD update - build all wheels (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlpss authored Dec 9, 2024
1 parent 0e361f7 commit 1d0b699
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ on:
env:
# Python 3.12+ is handled using the stable ABI, no need to build later versions
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8, <=3.12"
# Only build for PyPy 3.9
# CIBW_SKIP: "pp37* pp38*"
CIBW_BUILD: "cp310-manylinux_x86_64" # for testing, build single wheel.
# Only build for PyPy 3.9-
CIBW_SKIP: "pp37* pp38*"
# can be used for testing ->
#CIBW_BUILD: "cp310-manylinux_x86_64" # for testing, build single wheel.

# Target 64 bit architectures (x86_64, and arm64 on macOS)
CIBW_ARCHS_WINDOWS: auto64
Expand All @@ -29,8 +30,7 @@ env:
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014
# Necessary to see build output from the actual compilation
CIBW_BUILD_VERBOSITY: 1
# Temporary: use pre-release Python 3.12 for stable API builds
CIBW_PRERELEASE_PYTHONS: True

# GitHub Actions doesn't have macOS/arm64 runners, skip test on this platform
CIBW_TEST_SKIP: "*-macosx_arm64"
# Run pytest to ensure that the package was correctly built
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "ur_analytic_ik"
version = "0.0.7-rc"
version = "0.0.7-rc2"
description = "C++ implementation with Python bindings of analytic forward and inverse kinematics for the Universal Robots."
readme = "README.md"
requires-python = ">=3.8"
Expand Down

0 comments on commit 1d0b699

Please sign in to comment.