diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-07-13 15:09:41 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-07-13 15:09:41 -0400 |
| commit | 7ef1a45b7eea578022a509a3ddca0c6ea8b97b27 (patch) | |
| tree | 50959984e9d8eaa17154be469bcc58fd9ff31c59 /pkg_resources | |
| parent | b39dcbd12164cdd682aea2d39e298fe968dcf38e (diff) | |
| download | python-setuptools-git-7ef1a45b7eea578022a509a3ddca0c6ea8b97b27.tar.gz | |
Confusingly, the issue was fixed in a larger point release on Python 3.3 than on Python 3.2.
Diffstat (limited to 'pkg_resources')
| -rw-r--r-- | pkg_resources/py31compat.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg_resources/py31compat.py b/pkg_resources/py31compat.py index 1e73ee3e..331a51bb 100644 --- a/pkg_resources/py31compat.py +++ b/pkg_resources/py31compat.py @@ -15,8 +15,8 @@ def _makedirs_31(path, exist_ok=False): # and exists_ok considerations are disentangled. # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 needs_makedirs = ( - sys.version_info < (3, 2, 6) or - (3, 3) <= sys.version_info < (3, 3, 5) or + sys.version_info < (3, 2, 5) or + (3, 3) <= sys.version_info < (3, 3, 6) or (3, 4) <= sys.version_info < (3, 4, 1) ) makedirs = _makedirs_31 if needs_makedirs else os.makedirs |
