Update to clarify Python Compatibility (#140)

Does this make sense? A fellow team member didn't believe that Channels were Python 3 ready after looking at the docs, so I though it's best to clarify it once and for all, for instance in the FAQ?
This commit is contained in:
Benjamin Bach 2016-04-28 18:13:12 +02:00 committed by Andrew Godwin
parent 681616caa4
commit c579f27f6d

View File

@ -125,3 +125,11 @@ which is the unique channel representing the connection, but remember that
whatever you store in must be **network-transparent** - storing things in a
global variable won't work outside of development.
Are channels Python 2, 3 or 2+3?
--------------------------------
Django-channels and all of its dependencies are 2+3 (2.7, 3.4+). Compatibility may change with time. If in doubt, refer to the ``.travis.yml`` configuration file to see which Python versions that are included in CI testing.
This includes Twisted, for which the used subsets of the library used by Daphne are all py3k ready.