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/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
python-version: [
"3.10", "3.11", "3.12", "3.13", "3.14"
"3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"
]
os: [ubuntu-latest, macos-latest, windows-latest]

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
3.12
3.13
3.14
3.14t
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand Down Expand Up @@ -79,6 +80,7 @@ jobs:
3.12
3.13
3.14
3.14t
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand Down Expand Up @@ -112,6 +114,7 @@ jobs:
3.12
3.13
3.14
3.14t
allow-prereleases: true
architecture: ${{ matrix.platform.target }}
- name: Build wheels
Expand Down Expand Up @@ -145,6 +148,7 @@ jobs:
3.12
3.13
3.14
3.14t
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ latest

* Fix panic error when scanning imports of nonexistent namespace children
(https://github.com/python-grimp/grimp/issues/308).
* Officially support freethreaded Python 3.14.

3.15 (2026-07-03)
-----------------
Expand Down
1 change: 1 addition & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ test-all:
just test-python 3.12
just test-python 3.13
just test-python 3.14
just test-python 3.14t
just test-rust

# Populate missing Syrupy snapshots.
Expand Down
Loading