Skip to content

Commit 017037d

Browse files
committed
Drop Python 3.9 support
1 parent 94bd8c2 commit 017037d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
py: [ '3.9', '3.10', '3.11', '3.12' ]
14+
py: [ '3.10', '3.11', '3.12' ]
1515
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
1616
runs-on: ${{ matrix.os }}
1717
steps:
@@ -32,6 +32,6 @@ jobs:
3232
- uses: actions/checkout@v4
3333
- uses: actions/setup-python@v5
3434
with:
35-
python-version: "3.9"
35+
python-version: "3.10"
3636
- run: pip install mypy
3737
- run: mypy --install-types --non-interactive

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers =
1616
Operating System :: OS Independent
1717
1818
[options]
19-
python_requires = >=3.9
19+
python_requires = >=3.10
2020
packages=find:
2121
setup_requires =
2222
setuptools_scm

0 commit comments

Comments
 (0)