Skip to content

Commit b318d4d

Browse files
committed
Require Python 3.8
1 parent 3cafa50 commit b318d4d

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# We don't test on Windows currently as it appears mocket may not
1515
# work there.
1616
platform: [ubuntu-latest, macos-latest]
17-
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12]
17+
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
1818

1919
name: Python ${{ matrix.python-version }} on ${{ matrix.platform }}
2020
runs-on: ${{ matrix.platform }}

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
History
44
-------
55

6+
2.9.0
7+
++++++++++++++++++
8+
9+
* IMPORTANT: Python 3.8 or greater is required. If you are using an older
10+
version, please use an earlier release.
11+
612
2.8.0 (2023-05-09)
713
++++++++++++++++++
814

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ For asynchronous reporting:
306306
Requirements
307307
------------
308308

309-
Python 3.7 or greater is required. Older versions are not supported.
309+
Python 3.8 or greater is required. Older versions are not supported.
310310

311311
Versioning
312312
----------

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies = [
1313
"requests>=2.24.0,<3.0.0",
1414
"voluptuous",
1515
]
16-
requires-python = ">=3.7"
16+
requires-python = ">=3.8"
1717
readme = "README.rst"
1818
license = {text = "Apache License 2.0"}
1919
classifiers = [
@@ -23,7 +23,6 @@ classifiers = [
2323
"License :: OSI Approved :: Apache Software License",
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.7",
2726
"Programming Language :: Python :: 3.8",
2827
"Programming Language :: Python :: 3.9",
2928
"Programming Language :: Python :: 3.10",

setup.cfg

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,17 @@
33
max-line-length = 88
44

55
[tox:tox]
6-
envlist = {py37,py38,py39,py310,py311,py312}-test,py312-{black,lint,flake8,mypy}
6+
envlist = {py38,py39,py310,py311,py312}-test,py312-{black,lint,flake8,mypy}
77

88
[gh-actions]
99
python =
10-
3.7: py37
1110
3.8: py38
1211
3.9: py39
1312
3.10: py310
1413
3.11: py311
1514
3.12: py312,black,lint,flake8,mypy
1615

17-
[testenv:{py37,py38,py39,py310,py311,py312}-test]
16+
[testenv:{py38,py39,py310,py311,py312}-test]
1817
deps =
1918
mocket
2019
pytest

0 commit comments

Comments
 (0)