Skip to content

Commit e58d1fd

Browse files
author
Michael Howitz
committed
Drop Python 3.6, add support for Python 3.10, 3.11.
1 parent 1d11eca commit e58d1fd

File tree

4 files changed

+24
-21
lines changed

4 files changed

+24
-21
lines changed

.github/workflows/tests.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ jobs:
1717
matrix:
1818
config:
1919
# [Python version, tox env]
20-
- ["3.6", "py36"]
2120
- ["3.7", "py37"]
2221
- ["3.8", "py38"]
2322
- ["3.9", "py39"]
23+
- ["3.10", "py310"]
24+
- ["3.11", "py311"]
2425
flavour:
2526
- wsgi
2627
- zopeappwsgi

CHANGES.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ Change log for gocept.httpserverlayer
66
4.1 (unreleased)
77
================
88

9-
- Nothing changed yet.
9+
- Drop support for Python 3.6.
10+
11+
- Add support for Python 3.10, 3.11.
1012

1113

1214
4.0 (2021-04-07)

setup.py

+18-18
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,24 @@
3535
url='https://github.com/gocept/gocept.httpserverlayer',
3636

3737
keywords='HTTP server Plone testing zope.testrunner layer Zope',
38-
classifiers="""\
39-
Development Status :: 5 - Production/Stable
40-
Framework :: Zope :: 3
41-
Framework :: Zope :: 4
42-
Framework :: Zope :: 5
43-
Intended Audience :: Developers
44-
License :: OSI Approved :: Zope Public License
45-
Operating System :: OS Independent
46-
Programming Language :: Python :: 3
47-
Programming Language :: Python :: 3 :: Only
48-
Programming Language :: Python :: 3.6
49-
Programming Language :: Python :: 3.7
50-
Programming Language :: Python :: 3.8
51-
Programming Language :: Python :: 3.9
52-
Programming Language :: Python :: Implementation :: CPython
53-
Topic :: Internet :: WWW/HTTP :: HTTP Servers
54-
Topic :: Software Development :: Testing
55-
"""[:-1].split('\n'),
38+
classifiers=[
39+
'Development Status :: 5 - Production/Stable',
40+
'Framework :: Zope :: 3',
41+
'Framework :: Zope :: 4',
42+
'Framework :: Zope :: 5',
43+
'Intended Audience :: Developers',
44+
'License :: OSI Approved :: Zope Public License',
45+
'Operating System :: OS Independent',
46+
'Programming Language :: Python :: 3',
47+
'Programming Language :: Python :: 3.7',
48+
'Programming Language :: Python :: 3.8',
49+
'Programming Language :: Python :: 3.9',
50+
'Programming Language :: Python :: 3.10',
51+
'Programming Language :: Python :: 3.11',
52+
'Programming Language :: Python :: Implementation :: CPython',
53+
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
54+
'Topic :: Software Development :: Testing',
55+
],
5656
description='HTTP server integration for testing',
5757
long_description='\n\n'.join(open(name).read() for name in (
5858
'README.rst',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
{py36,py37,py38,py39}-{wsgi,zopeappwsgi,plonetesting},
3+
{py37,py38,py39,py310,py311}-{wsgi,zopeappwsgi,plonetesting},
44
coverage-report
55

66
[testenv]

0 commit comments

Comments
 (0)