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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,14 +277,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
include:
- os: macos-latest
python-version: "3.13"
- os: macos-latest
- os: macos-15
python-version: "3.14"
- os: macos-15
python-version: "3.10"
- os: windows-2025
python-version: "3.13"
python-version: "3.14"
- os: windows-2025
python-version: "3.10"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- triple: x86_64-apple-darwin
runner: macos-15-intel
- triple: aarch64-apple-darwin
runner: macos-latest
runner: macos-15
- triple: x86_64-pc-windows-msvc
runner: windows-latest
steps:
Expand Down
20 changes: 15 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
uses: PyO3/maturin-action@v1.51.0
with:
target: ${{ matrix.target }}
args: --release --out dist --features extension-module,postgres,redis,native-async,workflows --interpreter 3.10 3.11 3.12 3.13
args: --release --out dist --features extension-module,postgres,redis,native-async,workflows --interpreter 3.10 3.11 3.12 3.13 3.14
manylinux: 2_28
maturin-version: v1.13.3
working-directory: sdks/python
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
uses: PyO3/maturin-action@v1.51.0
with:
target: ${{ matrix.target }}
args: --release --out dist --features extension-module,postgres,redis,native-async,workflows --interpreter 3.10 3.11 3.12 3.13
args: --release --out dist --features extension-module,postgres,redis,native-async,workflows --interpreter 3.10 3.11 3.12 3.13 3.14
manylinux: musllinux_1_2
maturin-version: v1.13.3
working-directory: sdks/python
Expand All @@ -155,7 +155,7 @@ jobs:

build-wheels-macos:
needs: build-dashboard
runs-on: macos-latest
runs-on: macos-15
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -187,11 +187,16 @@ jobs:
with:
python-version: "3.13"

- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14"

- name: Build wheels
uses: PyO3/maturin-action@v1.51.0
with:
target: ${{ matrix.target }}
args: --release --out dist --features extension-module,postgres,redis,native-async,workflows --interpreter 3.10 3.11 3.12 3.13
args: --release --out dist --features extension-module,postgres,redis,native-async,workflows --interpreter 3.10 3.11 3.12 3.13 3.14
maturin-version: v1.13.3
working-directory: sdks/python

Expand Down Expand Up @@ -235,11 +240,16 @@ jobs:
with:
python-version: "3.13"

- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14"

- name: Build wheels
uses: PyO3/maturin-action@v1.51.0
with:
target: ${{ matrix.target }}
args: --release --out dist --features extension-module,postgres,redis,native-async,workflows --interpreter 3.10 3.11 3.12 3.13
args: --release --out dist --features extension-module,postgres,redis,native-async,workflows --interpreter 3.10 3.11 3.12 3.13 3.14
maturin-version: v1.13.3
working-directory: sdks/python

Expand Down
1 change: 1 addition & 0 deletions sdks/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
Expand Down