Skip to content

Commit a3c8287

Browse files
authored
Remove support for Python 3.7 (#677)
1 parent 5efefaa commit a3c8287

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/tox.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
include:
2525
- tox_env: lint
2626
- tox_env: docs
27-
- tox_env: py37
2827
- tox_env: py38
2928
- tox_env: py39
3029
- tox_env: py310
@@ -71,10 +70,10 @@ jobs:
7170
TOXENV: packaging
7271

7372
steps:
74-
- name: Switch to using Python 3.7 by default
73+
- name: Switch to using Python 3.8 by default
7574
uses: actions/setup-python@v2
7675
with:
77-
python-version: 3.7
76+
python-version: 3.8
7877
- name: Install tox
7978
run: python -m pip install --user tox
8079
- name: Check out src from Git

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.black]
2-
target-version = ['py37']
2+
target-version = ['py38']
33
include = '\.pyi?$'
44
exclude = '''
55
(

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ classifiers =
1818
Programming Language :: Python
1919
Programming Language :: Python :: 3
2020
Programming Language :: Python :: 3 :: Only
21-
Programming Language :: Python :: 3.7
2221
Programming Language :: Python :: 3.8
2322
Programming Language :: Python :: 3.9
2423
Programming Language :: Python :: 3.10
@@ -28,7 +27,7 @@ classifiers =
2827

2928
[options]
3029
use_scm_version = True
31-
python_requires = >=3.7
30+
python_requires = >=3.8
3231
packages = find:
3332
setup_requires =
3433
setuptools_scm

0 commit comments

Comments
 (0)