Skip to content

Commit b1c4e62

Browse files
committed
Stop supporting 3.6. Support 3.11.
1 parent 7df0f4b commit b1c4e62

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: "3.10"
22+
python-version: "3.11"
2323

2424
- name: Install dependencies
2525
run: |

.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", 3.11]
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ 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
23-
"3.10": py310, mypy
22+
"3.10": py310
23+
3.11: py311, mypy
2424

2525
[testenv]
2626
deps =

setup.py

Lines changed: 2 additions & 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,11 +36,11 @@
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",
4342
"Programming Language :: Python :: 3.10",
43+
"Programming Language :: Python :: 3.11",
4444
"Programming Language :: Python",
4545
"Topic :: Internet :: Proxy Servers",
4646
"Topic :: Internet",

0 commit comments

Comments
 (0)