Skip to content

Commit 0344196

Browse files
authored
Merge pull request #136 from maxmind/greg/py-upgrade
Stop supporting 3.6
2 parents 7df0f4b + 3b0dbb1 commit 0344196

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.6, 3.7, 3.8, 3.9, "3.10"]
17+
python-version: [3.7, 3.8, 3.9, "3.10"]
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.7.0
8+
++++++++++++++++++
9+
10+
* IMPORTANT: Python 3.7 or greater is required. If you are using an older
11+
version, please use an earlier release.
12+
713
4.6.0 (2022-06-21)
814
++++++++++++++++++
915

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ correction, please `contact MaxMind support
489489
Requirements
490490
------------
491491

492-
Python 3.6 or greater is required. Older versions are not supported.
492+
Python 3.7 or greater is required. Older versions are not supported.
493493

494494
The Requests HTTP library is also required. See
495495
<http://python-requests.org> for details.

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ envlist = py36, py37, py38, py39, py310, mypy
1616

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

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
package_data={"": ["LICENSE"], "geoip2": ["py.typed"]},
2525
package_dir={"geoip2": "geoip2"},
2626
include_package_data=True,
27-
python_requires=">=3.6",
27+
python_requires=">=3.7",
2828
install_requires=requirements,
2929
tests_require=["mocket>=3.8.9"],
3030
test_suite="tests",
@@ -36,7 +36,6 @@
3636
"Intended Audience :: System Administrators",
3737
"License :: OSI Approved :: Apache Software License",
3838
"Programming Language :: Python :: 3",
39-
"Programming Language :: Python :: 3.6",
4039
"Programming Language :: Python :: 3.7",
4140
"Programming Language :: Python :: 3.8",
4241
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)