Skip to content

Commit 32b2d35

Browse files
committed
Drop support for Python <=3.9
1 parent 27f5998 commit 32b2d35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Run the test suite
2020
strategy:
2121
matrix:
22-
python-version: [3.9, 3.13] # no particular need for in-between versions
22+
python-version: ["3.10", 3.13] # no particular need for in-between versions
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
indent-width = 4
22
line-length = 99
3-
target-version = "py39"
3+
target-version = "py310"
44

55
[lint]
66
select = [

0 commit comments

Comments
 (0)