Commit 48655c2b authored by tarek's avatar tarek

added distribute_setup_3k.py generation

--HG--
branch : distribute
extra : rebase_source : ce029e2f6fd53b2f279698637acb4a7de52be76d
parent 93ec26e2
......@@ -6,6 +6,7 @@ CHANGES
0.6.4
-----
* Added the generation of distribute_setup_3k.py during the release.
-----
......
......@@ -74,7 +74,7 @@ distribute_setup.py
===================
Download ``distribute_setup.py`` and execute it, using the Python interpreter of
your choice.
your choice.
If your shell has the ``wget`` program you can do::
......@@ -86,6 +86,8 @@ If you are under Python 3, use ``distribute_setup_3k.py``::
$ wget http://nightly.ziade.org/distribute_setup_3k.py
$ python distribute_setup_3k.py
Notice that both files are provided in the source release.
easy_install or pip
===================
......
#!/bin/sh
export VERSION="0.6.4"
# creating the 3k script
cp distribute_setup.py distribute_setup.py.back
2to3 -w distribute_setup.py > /dev/null
mv distribute_setup.py distribute_setup_3k.py
mv distribute_setup.py.back distribute_setup.py
# creating the releases
rm -rf dist
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment