Skip to content

Commit df558b7

Browse files
committed
Remove python 3.7 support, add python 3.13
This is mostly a matter of what is being tested. 3.7 should continue to work, but it is no longer easy to test so we no longer claim support.
1 parent 44d65de commit df558b7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
env: pep8
1414
- python: 3.9
1515
env: docs
16-
- python: 3.7
17-
env: py37
1816
- python: 3.8
1917
env: py38
2018
- python: 3.9
@@ -25,6 +23,8 @@ jobs:
2523
env: py311
2624
- python: "3.12"
2725
env: py312
26+
- python: "3.13"
27+
env: py313
2828
- python: pypy-3.8
2929
env: pypy3
3030
name: ${{ matrix.env }} on Python ${{ matrix.python }}

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Supported Libaries
1414
==================
1515

1616
``wsgi_intercept`` works with a variety of HTTP clients in Python 2.7,
17-
3.7 and beyond, and in pypy.
17+
3.8 and beyond, and in pypy.
1818

1919
* urllib2
2020
* urllib.request

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
Programming Language :: Python :: 2
1212
Programming Language :: Python :: 2.7
1313
Programming Language :: Python :: 3
14-
Programming Language :: Python :: 3.7
1514
Programming Language :: Python :: 3.8
1615
Programming Language :: Python :: 3.9
1716
Programming Language :: Python :: 3.10
1817
Programming Language :: Python :: 3.11
1918
Programming Language :: Python :: 3.12
19+
Programming Language :: Python :: 3.13
2020
Topic :: Internet :: WWW/HTTP :: WSGI
2121
Topic :: Software Development :: Testing
2222
""".strip().splitlines()

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 1.6
33
skipsdist = True
4-
envlist = py27,py35,py36,py37,py38,py39,py310,py311,py312,pypy,pep8,docs,readme
4+
envlist = py27,py35,py36,py38,py39,py310,py311,py312,py313,pypy,pep8,docs,readme
55

66
[testenv]
77
deps = .[testing]

wsgi_intercept/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
==================
1515
1616
``wsgi_intercept`` works with a variety of HTTP clients in Python 2.7,
17-
3.7 and beyond, and in pypy.
17+
3.8 and beyond, and in pypy.
1818
1919
* urllib2
2020
* urllib.request

0 commit comments

Comments
 (0)