Browse Source
Remove references to Python 2.7 in the documentation
pull/488/head
Miguel Grinberg
5 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
2 changed files with
3 additions and
4 deletions
-
docs/intro.rst
-
tox.ini
|
|
@ -47,7 +47,7 @@ Client Features |
|
|
|
|
|
|
|
- Can connect to other Socket.IO compliant servers besides the one in |
|
|
|
this package. |
|
|
|
- Compatible with Python 2.7 and 3.5+. |
|
|
|
- Compatible with Python 3.5+. |
|
|
|
- Two versions of the client, one for standard Python and another for |
|
|
|
asyncio. |
|
|
|
- Uses an event-based architecture implemented with decorators that |
|
|
@ -127,7 +127,7 @@ Server Features |
|
|
|
|
|
|
|
- Can connect to servers running other compliant Socket.IO clients besides |
|
|
|
the one in this package. |
|
|
|
- Compatible with Python 2.7 and Python 3.5+. |
|
|
|
- Compatible with Python Python 3.5+. |
|
|
|
- Two versions of the server, one for standard Python and another for |
|
|
|
asyncio. |
|
|
|
- Supports large number of clients even on modest hardware due to being |
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
|
[tox] |
|
|
|
envlist=flake8,py27,py35,py36,py37,pypy,pypy3,docs,coverage |
|
|
|
envlist=flake8,py35,py36,py37,pypy,pypy3,docs,coverage |
|
|
|
skip_missing_interpreters=True |
|
|
|
|
|
|
|
[testenv] |
|
|
@ -12,7 +12,6 @@ deps= |
|
|
|
mock |
|
|
|
basepython = |
|
|
|
flake8: python3.7 |
|
|
|
py27: python2.7 |
|
|
|
py35: python3.5 |
|
|
|
py36: python3.6 |
|
|
|
py37: python3.7 |
|
|
|