Skip to content

Commit

Permalink
Remove support for Python 3.7 (pytest-dev#677)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Dec 25, 2022
1 parent 5efefaa commit a3c8287
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
include:
- tox_env: lint
- tox_env: docs
- tox_env: py37
- tox_env: py38
- tox_env: py39
- tox_env: py310
Expand Down Expand Up @@ -71,10 +70,10 @@ jobs:
TOXENV: packaging

steps:
- name: Switch to using Python 3.7 by default
- name: Switch to using Python 3.8 by default
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8
- name: Install tox
run: python -m pip install --user tox
- name: Check out src from Git
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.black]
target-version = ['py37']
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -28,7 +27,7 @@ classifiers =

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

0 comments on commit a3c8287

Please sign in to comment.