Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ci #12

Merged
merged 18 commits into from
Dec 9, 2024
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
Loading