Skip to content

Commit ce0bc6d

Browse files
committed
fix!: drop python 3.9 support
BREAKING CHANGE: drop support for Python 3.9
1 parent b731e1b commit ce0bc6d

File tree

5 files changed

+174
-84
lines changed

5 files changed

+174
-84
lines changed

.github/workflows/linting.yml

+1-1
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.9', '3.10', '3.11', '3.12', '3.13']
11+
python-version: ['3.10', '3.11', '3.12', '3.13']
1212
name: Python ${{ matrix.python-version }}
1313

1414
steps:

.github/workflows/main.yml

+1-1
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.9', '3.10', '3.11', '3.12', '3.13']
11+
python-version: ['3.10', '3.11', '3.12', '3.13']
1212
name: Python ${{ matrix.python-version }}
1313

1414
steps:

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: windows-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
11+
python-version: ['3.10', '3.11', '3.12', '3.13']
1212
name: Python ${{ matrix.python-version }} (Windows)
1313

1414
steps:

0 commit comments

Comments
 (0)