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: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
]
requires-python = ">=3.9"
Expand Down
2 changes: 1 addition & 1 deletion taskcluster/docker/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ENV SHELL=/bin/bash \
PATH=/builds/worker/.local/bin:$PATH

# uv
COPY --from=ghcr.io/astral-sh/uv:0.4.16 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.9.3 /uv /bin/uv
# %ARG PYTHON_VERSIONS
RUN uv python install $PYTHON_VERSIONS
RUN chown -R worker:worker /builds/worker
Expand Down
23 changes: 23 additions & 0 deletions taskcluster/kinds/complete/kind.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
---
loader: taskgraph.loader.transform:loader

transforms:
- taskgraph.transforms.from_deps
- taskgraph.transforms.task

kind-dependencies:
- check
- test

tasks:
pr:
description: Ensures required PR tasks have completed
run-on-tasks-for: ["github-pull-request", "github-pull-request-untrusted"]
worker-type: succeed
from-deps:
group-by: all
set-name: false
unique-kinds: false
2 changes: 1 addition & 1 deletion taskcluster/kinds/docker-image/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ tasks:
fetch: {}
python:
args:
PYTHON_VERSIONS: "3.12 3.11 3.10 3.9"
PYTHON_VERSIONS: "3.14 3.13 3.12 3.11 3.10 3.9"
2 changes: 1 addition & 1 deletion taskcluster/kinds/test/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tasks:
description: "Run Python unit tests."
attributes:
artifact_prefix: public
python-versions: ["3.12", "3.11", "3.10", "3.9"]
python-versions: ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
run:
command: >-
uv run coverage run --data-file $MOZ_ARTIFACT_DIR/coverage --context=py$UV_PYTHON -m pytest -vv