Skip to content

Commit bd18823

Browse files
authored
Python upgrade: Stop testing 3.8, start testing 3.13 (#2721)
We don't strictly require 3.9 yet but likely should soon as the container annotation features are nice. Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
1 parent 5fb28ea commit bd18823

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python (oldest supported version)
1717
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
1818
with:
19-
python-version: 3.8
19+
python-version: "3.9"
2020
cache: 'pip'
2121
cache-dependency-path: |
2222
requirements/*.txt
@@ -36,12 +36,12 @@ jobs:
3636
needs: lint-test
3737
strategy:
3838
matrix:
39-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
39+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
4040
os: [ubuntu-latest]
4141
include:
42-
- python-version: "3.12"
42+
- python-version: "3.x"
4343
os: macos-latest
44-
- python-version: "3.12"
44+
- python-version: "3.x"
4545
os: windows-latest
4646

4747
runs-on: ${{ matrix.os }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ classifiers = [
3535
"Operating System :: POSIX :: Linux",
3636
"Programming Language :: Python",
3737
"Programming Language :: Python :: 3",
38-
"Programming Language :: Python :: 3.8",
3938
"Programming Language :: Python :: 3.9",
4039
"Programming Language :: Python :: 3.10",
4140
"Programming Language :: Python :: 3.11",
4241
"Programming Language :: Python :: 3.12",
42+
"Programming Language :: Python :: 3.13",
4343
"Programming Language :: Python :: Implementation :: CPython",
4444
"Topic :: Security",
4545
"Topic :: Software Development",

0 commit comments

Comments
 (0)