Skip to content

Commit f274001

Browse files
committed
fix: replace references meant to be latest python with 3.14 if missed in first go around
1 parent 2d92b75 commit f274001

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.13"
6+
python: "3.14"
77

88
python:
99
install:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13
1+
3.14

{{cookiecutter.project_name}}/.github/workflows/test-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
- { python: "3.12", os: "ubuntu-latest" }
3939
- { python: "3.13", os: "ubuntu-latest" }
4040
- { python: "3.14", os: "ubuntu-latest" }
41-
- { python: "3.13", os: "macos-latest" }
42-
- { python: "3.13", os: "windows-latest" }
41+
- { python: "3.14", os: "macos-latest" }
42+
- { python: "3.14", os: "windows-latest" }
4343
steps:
4444
- name: Checkout code
4545
uses: actions/checkout@v4

{{cookiecutter.project_name}}/.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ typecheck-python:
114114
<<: *uv-cache
115115
parallel:
116116
matrix:
117-
- PYTHON_VERSION: ["3.10", "3.11", "3.12", "3.13"]
117+
- PYTHON_VERSION: ["3.10", "3.11", "3.12", "3.13", "3.14"]
118118
image: ghcr.io/astral-sh/uv:latest-python$PYTHON_VERSION-bookworm-slim
119119
script:
120120
- uvx nox -s typecheck-$PYTHON_VERSION
@@ -178,7 +178,7 @@ test-python-macos:
178178
- curl -LsSf https://astral.sh/uv/install.sh | sh
179179
- export PATH="$PATH:$HOME/.cargo/bin"
180180
script:
181-
- uvx nox -s tests-python-3.13
181+
- uvx nox -s tests-python-3.14
182182
artifacts:
183183
reports:
184184
junit: tests/results/*.xml
@@ -206,7 +206,7 @@ test-python-windows:
206206
- powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
207207
- $env:PATH += ";$env:USERPROFILE\.cargo\bin"
208208
script:
209-
- uvx nox -s tests-python-3.13
209+
- uvx nox -s tests-python-3.14
210210
artifacts:
211211
reports:
212212
junit: tests/results/*.xml

{{cookiecutter.project_name}}/.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.13"
6+
python: "3.14"
77

88
python:
99
install:

{{cookiecutter.project_name}}/bitbucket-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# See https://support.atlassian.com/bitbucket-cloud/docs/get-started-with-bitbucket-pipelines/
44
# This is currently untested serves as a best guess for an equivalent pipeline
55

6-
image: ghcr.io/astral-sh/uv:latest-python3.13-bookworm-slim
6+
image: ghcr.io/astral-sh/uv:latest-python3.14-bookworm-slim
77

88
definitions:
99
caches:

0 commit comments

Comments
 (0)