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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
noxenv: ${{ fromJson(needs.list.outputs.noxenvs) }}
posargs: [""]
include:
- noxenv: tests-3.13
- noxenv: tests-3.14
posargs: coverage github

steps:
Expand All @@ -61,7 +61,9 @@ jobs:
3.11
3.12
3.13
pypy3.10
3.14
3.14t
pypy3.11
allow-prereleases: true

- name: Set up uv
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ imagesize==1.4.1
# via sphinx
jinja2==3.1.6
# via sphinx
lxml==5.4.0
lxml==6.0.2
# via sphinx-json-schema-spec
markupsafe==3.0.2
# via jinja2
Expand Down
11 changes: 10 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,16 @@
(path.parent / f"{path.stem}.in", path) for path in REQUIREMENTS.values()
]

SUPPORTED = ["3.9", "3.10", "pypy3.10", "3.11", "3.12", "3.13"]
SUPPORTED = [
"3.9",
"3.10",
"pypy3.11",
"3.11",
"3.12",
"3.13",
"3.14t",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you either put 3.14 last or explicitly change LATEST on the next line to be 3.14 -- that's used as the "default" Python for envs which don't specify a specific version, and we may as well use "normal" Python rather than the free threaded one.

"3.14",
]
LATEST = SUPPORTED[-1]

nox.options.default_venv_backend = "uv|virtualenv"
Expand Down