Skip to content

Commit 076ff09

Browse files
committed
Require python >= 3.9
Major distribution ship at least 3.9 and this will allow us to type with dict, list, tuple instead of typing.Dict, List, Tuple etc.
1 parent a035b6f commit 076ff09

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
python-version: ["3.8", "3.9", "3.10", "3.11"]
27+
python-version: ["3.9", "3.10", "3.11"]
2828
steps:
2929
- uses: actions/checkout@v3
3030
- name: Set up Python ${{ matrix.python-version }}

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ classifiers =
1818
Programming Language :: Python
1919
Programming Language :: Python :: 3
2020
Programming Language :: Python :: 3 :: Only
21-
Programming Language :: Python :: 3.8
2221
Programming Language :: Python :: 3.9
2322
Programming Language :: Python :: 3.10
23+
Programming Language :: Python :: 3.11
2424
Topic :: Software Development :: Testing
2525
Topic :: System :: Systems Administration
2626
Framework :: Pytest
2727

2828
[options]
2929
use_scm_version = True
30-
python_requires = >=3.8
30+
python_requires = >=3.9
3131
packages = find:
3232
setup_requires =
3333
setuptools_scm

0 commit comments

Comments
 (0)