Skip to content

Commit

Permalink
Python upgrade: Stop testing 3.8, start testing 3.13 (#2721)
Browse files Browse the repository at this point in the history
We don't strictly require 3.9 yet but likely should soon as the
container annotation features are nice.

Signed-off-by: Jussi Kukkonen <[email protected]>
  • Loading branch information
jku authored Oct 25, 2024
1 parent 5fb28ea commit bd18823
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python (oldest supported version)
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: 3.8
python-version: "3.9"
cache: 'pip'
cache-dependency-path: |
requirements/*.txt
Expand All @@ -36,12 +36,12 @@ jobs:
needs: lint-test
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest]
include:
- python-version: "3.12"
- python-version: "3.x"
os: macos-latest
- python-version: "3.12"
- python-version: "3.x"
os: windows-latest

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ classifiers = [
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
"Topic :: Software Development",
Expand Down

0 comments on commit bd18823

Please sign in to comment.