summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-07-23 06:04:01 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-07-23 06:04:01 -0700
commit3d995628ec8cfce38f3746643d343bb246d150e1 (patch)
tree893972e0bc4db4dcc859ac2a9dbf501bb22ed854 /README.md
parent88516160909af9ce0c66d05ef1761946335641be (diff)
downloadpystache-3d995628ec8cfce38f3746643d343bb246d150e1.tar.gz
Remove the --force2to3 option from setup.py.
See this link for the underlying reason: https://bitbucket.org/tarek/distribute/issue/292/allow-use_2to3-with-python-2
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/README.md b/README.md
index f6340e1..efcefff 100644
--- a/README.md
+++ b/README.md
@@ -222,11 +222,10 @@ To convert the code to Python 3 manually (while using Python 3)--
python setup.py build
-And while using Python 2--
-
- python setup.py --force2to3 build
-
-Both of the above write the converted code to a subdirectory called `build`.
+This writes the converted code to a subdirectory called `build`.
+By design, Python 3 builds
+[cannot](https://bitbucket.org/tarek/distribute/issue/292/allow-use_2to3-with-python-2)
+be created from Python 2.
To convert the code without using setup.py, you can use
[2to3](http://docs.python.org/library/2to3.html) as follows (two steps)--