Skip to content

Commit 4c76f8a

Browse files
committed
Drop support for EOL Python 3.6
1 parent 4e11593 commit 4c76f8a

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
# The forced pytest versions correspond with the lower bounds in tox.ini
2222
pytest-version: ['', '--force-dep pytest==4.6', '--force-dep pytest==6.2.4']
2323
include:
24-
- os: 'ubuntu-20.04'
25-
python-version: '3.6'
2624
- os: 'ubuntu-22.04'
2725
python-version: '3.7'
2826
- os: 'ubuntu-22.04'

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def run(self):
3838
long_description=read("README.rst"),
3939
url="https://github.com/pytest-dev/pytest-localserver",
4040
packages=["pytest_localserver"],
41-
python_requires=">=3.6",
41+
python_requires=">=3.7",
4242
install_requires=["werkzeug>=0.10"],
4343
extras_require={
4444
"smtp": [
@@ -59,7 +59,6 @@ def run(self):
5959
"License :: OSI Approved :: MIT License",
6060
"Programming Language :: Python :: 3",
6161
"Programming Language :: Python :: 3 :: Only",
62-
"Programming Language :: Python :: 3.6",
6362
"Programming Language :: Python :: 3.7",
6463
"Programming Language :: Python :: 3.8",
6564
"Programming Language :: Python :: 3.9",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39,310,311,312,313,py3}{,-smtp},lint
2+
envlist = py{37,38,39,310,311,312,313,py3}{,-smtp},lint
33
recreate = True
44
isolated_build = True
55

0 commit comments

Comments
 (0)