Skip to content

Commit fd0c6ce

Browse files
committed
Drop Python 3.6 support. Add 3.11.
1 parent 4cae89b commit fd0c6ce

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

.github/workflows/lint.yml

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

2222
- name: Install dependencies
2323
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
@@ -3,6 +3,12 @@
33
History
44
-------
55

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

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ For asynchronous reporting:
298298
Requirements
299299
------------
300300

301-
Python 3.6 or greater is required. Older versions are not supported.
301+
Python 3.7 or greater is required. Older versions are not supported.
302302

303303
Versioning
304304
----------

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ envlist = py36, py37, py38, py39, py310, mypy
1313

1414
[gh-actions]
1515
python =
16-
3.6: py36
1716
3.7: py37
1817
3.8: py38
1918
3.9: py39
20-
"3.10": py310, mypy
19+
"3.10": py310
20+
3.11: py311, mypy
2121

2222
[testenv]
2323
deps =

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
package_data={"minfraud": ["py.typed"]},
3838
include_package_data=True,
3939
platforms="any",
40-
python_requires=">=3.6",
40+
python_requires=">=3.7",
4141
install_requires=requirements,
4242
tests_require=["mocket>=3.8.6"],
4343
test_suite="tests",
@@ -48,10 +48,11 @@
4848
"Intended Audience :: Developers",
4949
"License :: OSI Approved :: Apache Software License",
5050
"Programming Language :: Python :: 3",
51-
"Programming Language :: Python :: 3.6",
5251
"Programming Language :: Python :: 3.7",
5352
"Programming Language :: Python :: 3.8",
5453
"Programming Language :: Python :: 3.9",
54+
"Programming Language :: Python :: 3.10",
55+
"Programming Language :: Python :: 3.11",
5556
"Programming Language :: Python",
5657
"Topic :: Internet :: Proxy Servers",
5758
"Topic :: Internet :: WWW/HTTP",

0 commit comments

Comments
 (0)