diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/easy_install.txt | 2 | ||||
-rw-r--r-- | docs/pkg_resources.txt | 2 | ||||
-rw-r--r-- | docs/setuptools.txt | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/easy_install.txt b/docs/easy_install.txt index a69ddd59..6739ba16 100644 --- a/docs/easy_install.txt +++ b/docs/easy_install.txt @@ -35,7 +35,7 @@ Please see the `setuptools PyPI page <https://pypi.python.org/pypi/setuptools>`_ for download links and basic installation instructions for each of the supported platforms. -You will need at least Python 2.4. An ``easy_install`` script will be +You will need at least Python 2.6. An ``easy_install`` script will be installed in the normal location for Python scripts on your platform. Note that the instructions on the setuptools PyPI page assume that you are diff --git a/docs/pkg_resources.txt b/docs/pkg_resources.txt index 3aac4720..8dd3e9ab 100644 --- a/docs/pkg_resources.txt +++ b/docs/pkg_resources.txt @@ -975,7 +975,7 @@ parsed_version py_version The major/minor Python version the distribution supports, as a string. - For example, "2.3" or "2.4". The default is the current version of Python. + For example, "2.7" or "3.4". The default is the current version of Python. platform A string representing the platform the distribution is intended for, or diff --git a/docs/setuptools.txt b/docs/setuptools.txt index dfa9ecdd..9bc8ea44 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -3,9 +3,9 @@ Building and Distributing Packages with Setuptools ================================================== ``Setuptools`` is a collection of enhancements to the Python ``distutils`` -(for Python 2.3.5 and up on most platforms; 64-bit platforms require a minimum -of Python 2.4) that allow you to more easily build and distribute Python -packages, especially ones that have dependencies on other packages. +(for Python 2.6 and up) that allow developers to more easily build and +distribute Python packages, especially ones that have dependencies on other +packages. Packages built and distributed using ``setuptools`` look to the user like ordinary Python packages based on the ``distutils``. Your users don't need to |