diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-24 15:00:15 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-24 15:00:15 -0500 |
commit | dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0 (patch) | |
tree | 7bd004ed70974f6cf512768a1d27275388a110be /pkg_resources.py | |
parent | 1e811c32250676cc83e79e4063d5420eb72a8f83 (diff) | |
download | external_python_setuptools-dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0.tar.gz external_python_setuptools-dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0.tar.bz2 external_python_setuptools-dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0.zip |
Drop support for Python 2.5 and Python 2.4. Fixes #41.
Diffstat (limited to 'pkg_resources.py')
-rw-r--r-- | pkg_resources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources.py b/pkg_resources.py index 02976016..2c19898b 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -716,7 +716,7 @@ class Environment(object): `platform` is an optional string specifying the name of the platform that platform-specific distributions must be compatible with. If unspecified, it defaults to the current platform. `python` is an - optional string naming the desired version of Python (e.g. ``'2.4'``); + optional string naming the desired version of Python (e.g. ``'3.3'``); it defaults to the current version. You may explicitly set `platform` (and/or `python`) to ``None`` if you |