We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94bd8c2 commit 017037dCopy full SHA for 017037d
2 files changed
.github/workflows/ci.yml
@@ -11,7 +11,7 @@ jobs:
11
strategy:
12
fail-fast: false
13
matrix:
14
- py: [ '3.9', '3.10', '3.11', '3.12' ]
+ py: [ '3.10', '3.11', '3.12' ]
15
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
16
runs-on: ${{ matrix.os }}
17
steps:
@@ -32,6 +32,6 @@ jobs:
32
- uses: actions/checkout@v4
33
- uses: actions/setup-python@v5
34
with:
35
- python-version: "3.9"
+ python-version: "3.10"
36
- run: pip install mypy
37
- run: mypy --install-types --non-interactive
setup.cfg
@@ -16,7 +16,7 @@ classifiers =
Operating System :: OS Independent
18
[options]
19
-python_requires = >=3.9
+python_requires = >=3.10
20
packages=find:
21
setup_requires =
22
setuptools_scm
0 commit comments