Skip to content

Commit 4cf935f

Browse files
committed
.github: add python 3.13 actions
Updating action tests to include tests using the Python v3.13 interpreter. Note that Mac OS and Windows builds will still use Python v3.12 until their latest images include the new version of Python. Signed-off-by: James Knight <[email protected]>
1 parent ea392ed commit 4cf935f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ jobs:
5353
- { os: ubuntu-latest, img: "python:3.10-slim", python: "3.10", toxenv: py310, cache: ~/.cache/pip }
5454
- { os: ubuntu-latest, img: "python:3.11-slim", python: "3.11", toxenv: py311, cache: ~/.cache/pip }
5555
- { os: ubuntu-latest, img: "python:3.12-slim", python: "3.12", toxenv: py312, cache: ~/.cache/pip }
56+
- { os: ubuntu-latest, img: "python:3.13-slim", python: "3.13", toxenv: py313, cache: ~/.cache/pip }
5657
- { os: macos-latest, python: "3.12", toxenv: py312, cache: ~/Library/Caches/pip }
5758
- { os: windows-latest, python: "3.12", toxenv: py312, cache: ~\AppData\Local\pip\Cache }
58-
- { os: ubuntu-latest, img: "python:3.12-slim", toxenv: pylint, cache: ~/.cache/pip }
59-
- { os: ubuntu-latest, img: "python:3.12-slim", toxenv: ruff, cache: ~/.cache/pip }
59+
- { os: ubuntu-latest, img: "python:3.13-slim", toxenv: pylint, cache: ~/.cache/pip }
60+
- { os: ubuntu-latest, img: "python:3.13-slim", toxenv: ruff, cache: ~/.cache/pip }
6061

6162
steps:
6263
- name: Checkout

.github/workflows/extract-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
- { os: ubuntu-latest, img: "python:3.10", python: "3.10", cache: ~/.cache/pip }
4949
- { os: ubuntu-latest, img: "python:3.11", python: "3.11", cache: ~/.cache/pip }
5050
- { os: ubuntu-latest, img: "python:3.12", python: "3.12", cache: ~/.cache/pip }
51+
- { os: ubuntu-latest, img: "python:3.13", python: "3.13", cache: ~/.cache/pip }
5152

5253
# additional operating systems
5354
- { os: macos-latest, python: "3.12", cache: ~/Library/Caches/pip }

0 commit comments

Comments
 (0)