Commit 26b5eb8f authored by Jason R. Coombs's avatar Jason R. Coombs

Merge with Distribute 0.6.47

--HG--
rename : distribute_setup.py => ez_setup.py
parents b99749aa a388b692
...@@ -64,4 +64,6 @@ ddca71ae5ceb9b14512dc60ea83802c10e224cf0 0.6.45 ...@@ -64,4 +64,6 @@ ddca71ae5ceb9b14512dc60ea83802c10e224cf0 0.6.45
d04c05f035e3a5636006fc34f4be7e6c77035d17 0.7.2 d04c05f035e3a5636006fc34f4be7e6c77035d17 0.7.2
d212e48e0cef689acba57ed017289c027660b23c 0.7.3 d212e48e0cef689acba57ed017289c027660b23c 0.7.3
85640475dda0621f20e11db0995fa07f51744a98 0.7.4 85640475dda0621f20e11db0995fa07f51744a98 0.7.4
b57e5ba934767dd498669b17551678081b3047b5 0.6.46
dd5bbc116c53d3732d22f983e7ca6d8cfabd3b08 0.7.5 dd5bbc116c53d3732d22f983e7ca6d8cfabd3b08 0.7.5
ee2c967017024197b38e39ced852808265387a4b 0.6.47
...@@ -62,6 +62,13 @@ Added several features that were slated for setuptools 0.6c12: ...@@ -62,6 +62,13 @@ Added several features that were slated for setuptools 0.6c12:
* Issue #3: Fixed NameError in SSL support. * Issue #3: Fixed NameError in SSL support.
------
0.6.47
------
* Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in
0.6.46.
------ ------
0.6.46 0.6.46
------ ------
......
...@@ -987,7 +987,7 @@ variable to point to an accessible directory. ...@@ -987,7 +987,7 @@ variable to point to an accessible directory.
extract, as it tracks the generated names for possible cleanup later. extract, as it tracks the generated names for possible cleanup later.
""" """
extract_path = self.extraction_path or get_default_cache() extract_path = self.extraction_path or get_default_cache()
self._warn_unsafe_extraction(extract_path) self._warn_unsafe_extraction_path(extract_path)
target_path = os.path.join(extract_path, archive_name+'-tmp', *names) target_path = os.path.join(extract_path, archive_name+'-tmp', *names)
try: try:
_bypass_ensure_directory(target_path) _bypass_ensure_directory(target_path)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment