Skip to content

Commit fa005ff

Browse files
committed
1 parent 7468182 commit fa005ff

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/tests.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
"3.11",
5353
"3.12",
5454
"3.13",
55-
"3.14-dev",
55+
"3.14",
5656
}
5757
}
5858
# TODO: List of additional variants to include in the matrix.
@@ -63,10 +63,12 @@ jobs:
6363
6464
# List of unstable criterions.
6565
unstable: list[dict[str, str]] = [
66-
# XXX error: Python 3.14 is still not available through uv, which gets its standalone Python executables
67-
# from the python-build-standalone project:
68-
# https://github.com/astral-sh/python-build-standalone/releases
69-
{"python-version": "3.14-dev"},
66+
# XXX Python 3.14.0a3 is not available for Windows yet:
67+
# https://github.com/astral-sh/python-build-standalone/releases/tag/20250106
68+
# https://github.com/astral-sh/python-build-standalone/pull/478
69+
# https://github.com/astral-sh/python-build-standalone/pull/443
70+
{"python-version": "3.14", "os": "windows-2022"},
71+
{"python-version": "3.14", "os": "windows-2019"},
7072
]
7173
7274
# Build the job matrix.

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
> This version is not released yet and is under active development.
77
88
- Replace unmaintained `jsonlint` by ESLint.
9+
- Activate mark Python 3.14-dev tests as stable on Linux and macOS.
910

1011
## [4.9.0 (2024-12-27)](https://github.com/kdeldycke/workflows/compare/v4.8.4...v4.9.0)
1112

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ classifiers = [
4646
"Programming Language :: Python :: 3.11",
4747
"Programming Language :: Python :: 3.12",
4848
"Programming Language :: Python :: 3.13",
49+
"Programming Language :: Python :: 3.14",
4950
'Programming Language :: Python :: Implementation :: CPython',
5051
'Programming Language :: Unix Shell',
5152
'Topic :: Documentation :: Sphinx',

0 commit comments

Comments
 (0)