diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-09 10:51:47 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-09 10:51:47 -0400 |
commit | 50e511b8292c08d1cf049e7f4060014491579ea1 (patch) | |
tree | 25cdbb3cdcded46e5f35baac4beca6a70bea3cdb | |
parent | 6790d075bfbe3723fd1ac88e202938f63edde164 (diff) | |
download | external_python_setuptools-50e511b8292c08d1cf049e7f4060014491579ea1.tar.gz external_python_setuptools-50e511b8292c08d1cf049e7f4060014491579ea1.tar.bz2 external_python_setuptools-50e511b8292c08d1cf049e7f4060014491579ea1.zip |
Added sections on upgrading
-rw-r--r-- | docs/merge-faq.txt | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/docs/merge-faq.txt b/docs/merge-faq.txt index 65fce3c0..52013098 100644 --- a/docs/merge-faq.txt +++ b/docs/merge-faq.txt @@ -1,5 +1,29 @@ Setuptools/Distribute Merge FAQ -------------------------------- +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +How do I upgrade from Distribute? +================================= + +Distribute specifically prohibits installation of Setuptools 0.7 from Distribute 0.6. There are then two options for upgrading. + +Note that after upgrading using either technique, the only option to downgrade to either version is to completely uninstall Distribute and Setuptools 0.7 versions before reinstalling an 0.6 release. + +Use Distribute 0.7 +------------------ + +The PYPA has put together a compatibility wrapper, a new release of Distribute version 0.7. This package will install over Distribute 0.6.x installations and will replace Distribute with a simple wrapper that requires Setuptools 0.7 or later. This technique is experimental, but initial results indicate this technique is the easiest upgrade path. + + +Uninstall +--------- + +First, completely uninstall Distribute. Since Distribute does not have an automated installation routine, this process is manual. Follow the instructions in the README for uninstalling. + + +How do I upgrade from Setuptools 0.6? +===================================== + +There are no special instructions for upgrading over older versions of Setuptools. Simply use `easy_install -U` or run the latest `ez_setup.py`. Where does the merge occur? ======================================================== |