deprecated Python 2.6 (fixes #554)

This commit is contained in:
Tobias Oberstein 2015-12-06 09:08:22 +01:00
parent 02c496728f
commit 0e81066a1b
4 changed files with 1 additions and 5 deletions

View File

@ -55,7 +55,7 @@ WebSocket allows `bidirectional real-time messaging <http://crossbario.com/blog/
|AbL| features:
* framework for `WebSocket`_ and `WAMP`_ clients
* compatible with Python 2.6, 2.7, 3.3 and 3.4
* compatible with Python 2.7 and 3.3+
* runs on `CPython`_, `PyPy`_ and `Jython`_
* runs under `Twisted`_ and `asyncio`_
* implements WebSocket `RFC6455`_ (and draft versions Hybi-10+)

View File

@ -27,8 +27,6 @@ Here are the configurations supported by |ab|:
+---------------+-----------+---------+---------------------------------+
| Python | Twisted | asyncio | Notes |
+---------------+-----------+---------+---------------------------------+
| CPython 2.6 | yes | yes | asyncio support via `trollius`_ |
+---------------+-----------+---------+---------------------------------+
| CPython 2.7 | yes | yes | asyncio support via `trollius`_ |
+---------------+-----------+---------+---------------------------------+
| CPython 3.3 | yes | yes | asyncio support via `tulip`_ |

View File

@ -208,7 +208,6 @@ setup(
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",

View File

@ -1,7 +1,6 @@
[tox]
envlist =
flake8
py26-{tw121,tw132,tw154,asyncio}
py27-{tw121,tw132,tw155,twtrunk,asyncio}
pypy-{tw121,tw132,tw155,twtrunk,asyncio}
py33-{tw155,twtrunk,asyncio}