add py3 notice to faq

This commit is contained in:
Ryan Pessa 2014-09-10 14:44:30 -05:00
parent 1bfa50bcbe
commit d0b473d3b3
1 changed files with 16 additions and 0 deletions

View File

@ -220,6 +220,22 @@ Does Kivy support Python 3.x?
Yes! As of version 1.8.0 Kivy supports both Python >= 2.7 and Python >= 3.3
with the same codebase.
However, be aware that while Kivy will run in Python 3.3+, packaging support
is not yet complete. If you plan to create mobile apps for Android or iOS,
you should use Python 2.7 for now.
I've already started with Python 3.x! Is there anything I can do?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Be patient. We're working on it. :)
If you can't wait, you could try using the 3to2_ tool, which converts valid
Python 3 syntax to Python 2. However, be warned that this tool does not work
for all Python 3 code.
.. _3to2: https://pypi.python.org/pypi/3to2
How is Kivy related to PyMT?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~