Skip to content

Commit c880c2b

Browse files
committed
Require Python 3.8
1 parent c0ddbcf commit c880c2b

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
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
@@ -4,6 +4,12 @@
44
History
55
-------
66

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

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ correction, please `contact MaxMind support
495495
Requirements
496496
------------
497497

498-
Python 3.7 or greater is required. Older versions are not supported.
498+
Python 3.8 or greater is required. Older versions are not supported.
499499

500500
The Requests HTTP library is also required. See
501501
<https://pypi.org/project/requests/> for details.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies = [
1616
"requests>=2.24.0,<3.0.0",
1717
"setuptools>=60.0.0",
1818
]
19-
requires-python = ">=3.7"
19+
requires-python = ">=3.8"
2020
readme = "README.rst"
2121
license = {text = "Apache License, Version 2.0"}
2222
classifiers = [
@@ -27,7 +27,6 @@ classifiers = [
2727
"License :: OSI Approved :: Apache Software License",
2828
"Programming Language :: Python",
2929
"Programming Language :: Python :: 3",
30-
"Programming Language :: Python :: 3.7",
3130
"Programming Language :: Python :: 3.8",
3231
"Programming Language :: Python :: 3.9",
3332
"Programming Language :: Python :: 3.10",

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ envlist = {py37,py38,py39,py310,py311,py312}-test,py312-{black,lint,flake8,mypy}
1616

1717
[gh-actions]
1818
python =
19-
3.7: py37
2019
3.8: py38
2120
3.9: py39
2221
3.10: py310

0 commit comments

Comments
 (0)