Skip to content

Commit 0930afc

Browse files
committed
chore: python 3.12 -> 3.13 as default
1 parent cefc983 commit 0930afc

11 files changed

+14
-14
lines changed

.github/workflows/check_todos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set up Python 3.12
16+
- name: Set up Python 3.13
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.12"
19+
python-version: "3.13"
2020
- name: Upgrade pip
2121
run: python -m pip install --upgrade pip
2222
- name: Install Ruff

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# Note that this is just the version of Python that we use to run `uv` with.
2525
# `uv` manages its own version of Python.
2626
# For speed, we use the same version for both, but in principle these could differ.
27-
python-version: 3.12
27+
python-version: 3.13
2828
- name: Set up uv cache directory location (Linux/Mac)
2929
run: echo "UV_CACHE_DIR=${{ runner.temp }}/.uv-cache" >> $GITHUB_ENV
3030
if: runner.os != 'Windows'

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# Note that this is just the version of Python that we use to run `uv` with.
2121
# `uv` manages its own version of Python.
2222
# For speed, we use the same version for both, but in principle these could differ.
23-
python-version: 3.12
23+
python-version: 3.13
2424
- name: Set up uv cache directory location (Linux/Mac)
2525
run: echo "UV_CACHE_DIR=${{ runner.temp }}/.uv-cache" >> $GITHUB_ENV
2626
if: runner.os != 'Windows'

.github/workflows/performance.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# Note that this is just the version of Python that we use to run `uv` with.
2222
# `uv` manages its own version of Python.
2323
# For speed, we use the same version for both, but in principle these could differ.
24-
python-version: 3.12
24+
python-version: 3.13
2525
- name: Set up uv cache directory location (Linux/Mac)
2626
run: echo "UV_CACHE_DIR=${{ runner.temp }}/.uv-cache" >> $GITHUB_ENV
2727
if: runner.os != 'Windows'

.github/workflows/pre_commit_autoupdate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
fi
4646
4747
# Pre-commit setup and autoupdate steps
48-
- name: Set up Python 3.12
48+
- name: Set up Python 3.13
4949
uses: actions/setup-python@v5
5050
with:
51-
python-version: 3.12
51+
python-version: 3.13
5252
cache: pip
5353
- name: Upgrade Pip
5454
run: python -m pip install --upgrade pip

.github/workflows/pre_commit_checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# Note that this is just the version of Python that we use to run `uv` with.
2020
# `uv` manages its own version of Python.
2121
# For speed, we use the same version for both, but in principle these could differ.
22-
python-version: 3.12
22+
python-version: 3.13
2323
- name: Set up uv cache directory location (Linux/Mac)
2424
run: echo "UV_CACHE_DIR=${{ runner.temp }}/.uv-cache" >> $GITHUB_ENV
2525
if: runner.os != 'Windows'

.github/workflows/pyright.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# Note that this is just the version of Python that we use to run `uv` with.
2121
# `uv` manages its own version of Python.
2222
# For speed, we use the same version for both, but in principle these could differ.
23-
python-version: 3.12
23+
python-version: 3.13
2424
- name: Set up uv cache directory location (Linux/Mac)
2525
run: echo "UV_CACHE_DIR=${{ runner.temp }}/.uv-cache" >> $GITHUB_ENV
2626
if: runner.os != 'Windows'

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up base Python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.12
22+
python-version: 3.13
2323
- name: Install and upgrade build tools
2424
run: |
2525
python -m pip install --upgrade pip

.github/workflows/uv_lock_autoupdate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
fi
4848
4949
# uv setup and lockfile upgrading steps
50-
- name: Set up Python 3.12
50+
- name: Set up Python 3.13
5151
uses: actions/setup-python@v5
5252
with:
53-
python-version: 3.12
53+
python-version: 3.13
5454
cache: pip
5555
- name: Upgrade Pip
5656
run: python -m pip install --upgrade pip

.python-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2
66
build:
77
os: ubuntu-22.04
88
tools:
9-
python: "3.12"
9+
python: "3.13"
1010

1111
sphinx:
1212
configuration: documentation/source/conf.py

0 commit comments

Comments
 (0)