Skip to content

Commit 8f86c35

Browse files
pgjonesKriechi
authored andcommitted
Drop support for Python 3.6
Python 3.6 reached End Of Life a month ago.
1 parent 902538a commit 8f86c35

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
max-parallel: 5
1414
matrix:
1515
python-version:
16-
- 3.6
1716
- 3.7
1817
- 3.8
1918
- 3.9

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Unreleased
55
----------
66

77
- Added support for Python 3.10.
8+
- Drop support for Python 3.6, meaning the minimum supported version
9+
is Python 3.7.0.
810

911

1012
1.0.0 (2020-11-22)

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,14 @@
3131
packages=find_packages(where="src"),
3232
package_data={'wsproto': ['py.typed']},
3333
package_dir={'': 'src'},
34-
python_requires='>=3.6.1',
34+
python_requires='>=3.7.0',
3535
license='MIT License',
3636
classifiers=[
3737
'Development Status :: 5 - Production/Stable',
3838
'Intended Audience :: Developers',
3939
'License :: OSI Approved :: MIT License',
4040
'Programming Language :: Python',
4141
'Programming Language :: Python :: 3',
42-
'Programming Language :: Python :: 3.6',
4342
'Programming Language :: Python :: 3.7',
4443
'Programming Language :: Python :: 3.8',
4544
'Programming Language :: Python :: 3.9',
@@ -48,7 +47,6 @@
4847
'Programming Language :: Python :: Implementation :: PyPy',
4948
],
5049
install_requires=[
51-
"dataclasses ; python_version < '3.7'",
5250
'h11>=0.9.0,<1',
5351
],
5452
)

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, py310, pypy3, lint, docs, packaging
2+
envlist = py37, py38, py39, py310, pypy3, lint, docs, packaging
33

44
[gh-actions]
55
python =
6-
3.6: py36
76
3.7: py37
87
3.8: py38
98
3.9: py39

0 commit comments

Comments
 (0)