Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12', '3.13', '3.13t', '3.14', '3.14t', 'pypy-3.10', 'pypy-3.11']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.13t', '3.14', '3.14t', 'pypy-3.10', 'pypy-3.11', 'graalpy-25.0']
steps:
- uses: actions/checkout@v5
- name: Get history and tags for SCM versioning to work
Expand Down
27 changes: 24 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,15 @@ jobs:
manylinux_version: manylinux2014
- os: windows-latest
archs: ARM64
- os: ubuntu-latest
archs: auto
manylinux_version: graalpy
- os: windows-latest
archs: auto64
manylinux_version: graalpy
- os: macos-latest
archs: auto
manylinux_version: graalpy
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -89,7 +98,7 @@ jobs:
- name: Install cibuildwheel
run: |
python -m pip install --upgrade pip
python -m pip install wheel cibuildwheel==3.1.1
python -m pip install wheel cibuildwheel==3.3.0
- name: Build wheels
if: matrix.manylinux_version == 'manylinux2010'
env:
Expand All @@ -108,7 +117,7 @@ jobs:
env:
CIBW_BUILD: "cp311-* cp312-* cp313-* cp313t-* cp314-* cp314t-* pp310-* pp311-*"
CIBW_SKIP: "cp313t-win*"
CIBW_ENABLE: cpython-freethreading pypy
CIBW_ENABLE: cpython-freethreading pypy cpython-prerelease pypy-eol
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
CIBW_ARCHS_LINUX: ${{ matrix.archs }}
CIBW_ARCHS_WINDOWS: auto64
Expand All @@ -122,14 +131,26 @@ jobs:
if: runner.os == 'Windows' && matrix.archs == 'ARM64'
env:
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-* cp313t-* cp314-* cp314t-*"
CIBW_ENABLE: cpython-freethreading
CIBW_ENABLE: cpython-freethreading cpython-prerelease
CIBW_ARCHS_WINDOWS: ${{ matrix.archs }}
# It is not yet possible to run ARM64 tests, only cross-compile them.
CIBW_TEST_SKIP: "*-win_arm64"
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: python -m pytest {package}/py/tests -v
run: |
python -m cibuildwheel . --output-dir dist
- name: Build wheels
if: matrix.manylinux_version == 'graalpy'
env:
CIBW_BUILD: "gp312_250-*"
CIBW_ENABLE: graalpy
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
CIBW_ARCHS_LINUX: auto
CIBW_ARCHS_WINDOWS: auto64
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: python -m pytest {package}/py/tests -v
run: |
python -m cibuildwheel . --output-dir dist
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ kiwisolver.egg-info/
.eggs
.vscode
.mypy_cache

.idea
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: GraalPy",
]
dynamic = ["version"]

Expand Down