Skip to content

Commit 811db94

Browse files
Bump Python language version support
* Drop support for 3.8 * Re-lock deps on Python >= 3.9 * Add testing for 3.13
1 parent f38903b commit 811db94

File tree

6 files changed

+197
-172
lines changed

6 files changed

+197
-172
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2121
steps:
2222
- name: Checkout code
2323
uses: actions/checkout@v4

.github/workflows/conformance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.8", "3.9", "3.10", "3.11"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2121
steps:
2222
- name: Checkout code
2323
uses: actions/checkout@v4

.github/workflows/release.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
release:
55
types: [published]
66

7-
env:
8-
PYTHON_VERSION: '3.7.17'
9-
107
jobs:
118
build:
129
name: Build package
@@ -15,7 +12,7 @@ jobs:
1512
name: release
1613
strategy:
1714
matrix:
18-
python-version: [ "3.11" ]
15+
python-version: [ "3.13" ]
1916
steps:
2017
- name: Checkout source
2118
uses: actions/checkout@v4

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ exceptiongroup = "*"
1616
tomli = "*"
1717

1818
[requires]
19-
python_version = "3.8"
19+
python_version = "3.9"

0 commit comments

Comments
 (0)