File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 7
7
include :
8
8
- python : 3.6
9
9
- python : 3.7
10
+ - python : pypy3.6
10
11
dist : xenial
11
12
sudo : true
12
13
Original file line number Diff line number Diff line change 31
31
'Programming Language :: Python :: 3.5' ,
32
32
'Programming Language :: Python :: 3.6' ,
33
33
'Programming Language :: Python :: 3.7' ,
34
+ 'Programming Language :: Python :: Implementation :: CPython' ,
35
+ 'Programming Language :: Python :: Implementation :: PyPy' ,
34
36
],
35
37
python_requires = ">=3.5" ,
36
38
keywords = 'websocket client server trio' ,
39
41
'async_generator>=1.10,<2' ,
40
42
'ipaddress>=1.0.22,<2' ,
41
43
'trio>=0.11' ,
42
- 'wsaccel>=0.6.2,<0.7' ,
44
+ # TODO: confirm whether wsaccel is relevant to performance
45
+ # Disabled on pypy: https://github.com/methane/wsaccel/issues/19
46
+ 'wsaccel>=0.6.2,<0.7;implementation_name!="pypy"' ,
43
47
'wsproto>=0.14,<0.15' ,
44
48
'yarl>=1.2.6,<2'
45
49
],
You can’t perform that action at this time.
0 commit comments