Skip to content

Commit 512d55d

Browse files
Stop testing unsupported Python 3.8 and 3.9
Either support Python 3.8 and 3.9 officially and keep testing these versions, or stop testing. This grey area where you don't support versions but still test them just in case doesn't help. For example, ruff targets `requires-python` and generates code that may not be compatible with earlier versions. Such code will break CI tests with unsupported versions of Python.
1 parent 200b784 commit 512d55d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/tabulate.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ jobs:
88
build:
99
strategy:
1010
matrix:
11-
# Python 3.9 is not supported anymore, but it still works...
12-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
11+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1312
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
1413
runs-on: ${{ matrix.os }}
1514

0 commit comments

Comments
 (0)