File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
+ dist : xenial
2
3
3
4
git :
4
5
depth : 1
7
8
include :
8
9
- python : 3.6
9
10
- python : 3.7
10
- dist : xenial
11
- sudo : true
11
+ - python : pypy3.6-7.1.1
12
12
13
13
install :
14
14
- pip install -e .
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