Skip to content

Commit 8a04a60

Browse files
committed
chore: Change to Python 3.11+ since that's the Debian stable version
1 parent 6f77337 commit 8a04a60

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/unittest.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.11", "3.12"]
1212
steps:
1313
- uses: actions/checkout@v4
1414
- name: Set up Python ${{ matrix.python-version }}
@@ -25,7 +25,7 @@ jobs:
2525
# runs-on: windows-latest
2626
# strategy:
2727
# matrix:
28-
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
28+
# python-version: ["3.11", "3.12"]
2929
# steps:
3030
# - uses: actions/checkout@v4
3131
# - name: Set up Python ${{ matrix.python-version }}

normfn

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import typing
1717

1818
from typing import Any
1919

20-
assert sys.version_info >= (3, 8)
20+
assert sys.version_info >= (3, 11)
2121

2222
BASENAME_EXCLUDE_PATTERNS = frozenset([r"\..*", "Icon\r", r".*\.lo?ck"])
2323

0 commit comments

Comments
 (0)