Skip to content

Commit

Permalink
Require python >= 3.9
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
philpep committed Jul 21, 2023
1 parent a035b6f commit 076ff09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Testing
Topic :: System :: Systems Administration
Framework :: Pytest

[options]
use_scm_version = True
python_requires = >=3.8
python_requires = >=3.9
packages = find:
setup_requires =
setuptools_scm
Expand Down

0 comments on commit 076ff09

Please sign in to comment.