diff options
| author | Hugo <hugovk@users.noreply.github.com> | 2018-04-26 18:06:09 +0300 |
|---|---|---|
| committer | Paul Ganssle <paul@ganssle.io> | 2018-05-24 14:32:31 -0400 |
| commit | 7392f01ffced3acfdef25b0b2d55cefdc6ee468a (patch) | |
| tree | af16caf760ae204ba437d0aa7a6b862fc85bb0b2 /pkg_resources/__init__.py | |
| parent | e078d78a439591fd7028cf80ca0b7c12ae013d4d (diff) | |
| download | external_python_setuptools-7392f01ffced3acfdef25b0b2d55cefdc6ee468a.tar.gz external_python_setuptools-7392f01ffced3acfdef25b0b2d55cefdc6ee468a.tar.bz2 external_python_setuptools-7392f01ffced3acfdef25b0b2d55cefdc6ee468a.zip | |
Drop support for EOL Python 3.3
Diffstat (limited to 'pkg_resources/__init__.py')
| -rw-r--r-- | pkg_resources/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index 4e4409b3..91d00483 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -78,8 +78,8 @@ __import__('pkg_resources.extern.packaging.requirements') __import__('pkg_resources.extern.packaging.markers') -if (3, 0) < sys.version_info < (3, 3): - raise RuntimeError("Python 3.3 or later is required") +if (3, 0) < sys.version_info < (3, 4): + raise RuntimeError("Python 3.4 or later is required") if six.PY2: # Those builtin exceptions are only defined in Python 3 @@ -959,7 +959,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. ``'3.3'``); + optional string naming the desired version of Python (e.g. ``'3.6'``); it defaults to the current version. You may explicitly set `platform` (and/or `python`) to ``None`` if you |
