Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
env:
# --- CORRECT way to specify target Python versions ---
# Uncomment and adjust this list as needed
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*" # Build wheels FOR CPython 3.8, 3.9, 3.10, 3.11, 3.12
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*" # Build wheels FOR CPython 3.8, 3.9, 3.10, 3.11, 3.12, 3.13

# --- Other cibuildwheel configurations ---
CIBW_SKIP: "pp* *_i686"
Expand Down
2 changes: 1 addition & 1 deletion build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e -x

# Define the Python versions you want to build for
PYTHON_VERSIONS=("cp38-cp38" "cp39-cp39" "cp310-cp310" "cp311-cp311" "cp312-cp312")
PYTHON_VERSIONS=("cp38-cp38" "cp39-cp39" "cp310-cp310" "cp311-cp311" "cp312-cp312" "cp313-cp313")

# Install necessary system packages
yum install -y gcc gcc-c++ make
Expand Down
2 changes: 1 addition & 1 deletion build_and_repair_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e -x

# List of Python versions to build for.
PYTHON_VERSIONS=("cp38-cp38" "cp39-cp39" "cp310-cp310" "cp311-cp311" "cp312-cp312")
PYTHON_VERSIONS=("cp38-cp38" "cp39-cp39" "cp310-cp310" "cp311-cp311" "cp312-cp312" "cp313-cp313")

# Install build tools (if needed inside the container)
yum install -y gcc gcc-c++ make
Expand Down