Skip to content

Commit 2256894

Browse files
author
Adam Dyess
committed
support python3.10 with later versions of websockets
1 parent 276ecf2 commit 2256894

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
'pyyaml>=5.1.2,<=6.0',
3737
'theblues>=0.5.1,<1.0',
3838
'websockets>=7.0,<8.0 ; python_version<"3.9"',
39-
'websockets>=8.0,<9.0 ; python_version>="3.9"',
39+
'websockets>=8.0,<9.0 ; python_version=="3.9"',
40+
'websockets>=9.0; python_version>"3.9"',
4041
'paramiko>=2.4.0,<3.0.0',
4142
'pyasn1>=0.4.4',
4243
'toposort>=1.5,<2',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = lint,py3,py35,py36,py37,py38,py39
7+
envlist = lint,py3,py35,py36,py37,py38,py39,py310
88
skipsdist=True
99

1010
[pytest]

0 commit comments

Comments
 (0)