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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.13", "3.13t"]
python-version: ["3.13", "3.13t", "graalpy-24.2"]

env:
RUNS_ON: ubuntu-latest
Expand Down Expand Up @@ -261,6 +261,10 @@ jobs:
manylinux: [auto]
include:
# manylinux for various platforms
- os: linux
manylinux: auto
target: x86_64
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 graalpy3.11
- os: linux
manylinux: auto
target: i686
Expand Down Expand Up @@ -331,6 +335,7 @@ jobs:
args: --release --out dist --interpreter ${{ matrix.interpreter || '3.9 3.10 3.11 3.12 3.13 3.14' }}
rust-toolchain: stable
working-directory: crates/jiter-python
before-script-linux: ${{ contains(matrix.interpreter, 'graalpy') && 'manylinux-interpreters ensure-all' || '' }}

- run: ${{ (matrix.os == 'windows' && 'dir') || 'ls -lh' }} crates/jiter-python/dist/

Expand Down
2 changes: 2 additions & 0 deletions crates/jiter-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: GraalPy",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
Expand Down
Loading