summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-07-02 08:37:39 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-07-02 08:37:39 -0400
commitdba8600999daaf18d207c61c4ce5168d52bc5f60 (patch)
treee7d24cc7e594d6415ca374b31fba9df1abc84a69
parentb59a01e059d5b2936d10500d8eb7b33e98f1da40 (diff)
parenta388b6922478b5d5048d1f7f1685da2ca16050c7 (diff)
downloadpython-setuptools-git-dba8600999daaf18d207c61c4ce5168d52bc5f60.tar.gz
Merge 0.6.47 with native Python 3 code
--HG-- branch : distribute
-rw-r--r--.hgtags1
-rw-r--r--CHANGES.txt7
-rwxr-xr-xREADME.txt6
-rw-r--r--distribute_setup.py2
-rw-r--r--docs/conf.py4
-rw-r--r--pkg_resources.py2
-rw-r--r--release.py2
-rwxr-xr-xsetup.py2
8 files changed, 17 insertions, 9 deletions
diff --git a/.hgtags b/.hgtags
index 43fe0a66..54dd2171 100644
--- a/.hgtags
+++ b/.hgtags
@@ -56,3 +56,4 @@ f30167716b659f96c5e0b7ea3d5be2bcff8c0eac 0.6.42
73aa98aee6bbc4a9d19a334a8ac928dece7799c6 0.6.44
ddca71ae5ceb9b14512dc60ea83802c10e224cf0 0.6.45
b57e5ba934767dd498669b17551678081b3047b5 0.6.46
+ee2c967017024197b38e39ced852808265387a4b 0.6.47
diff --git a/CHANGES.txt b/CHANGES.txt
index 029e4277..3baf6e7a 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,6 +3,13 @@ CHANGES
=======
------
+0.6.47
+------
+
+* Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in
+ 0.6.46.
+
+------
0.6.46
------
diff --git a/README.txt b/README.txt
index d40b77d5..e24506bb 100755
--- a/README.txt
+++ b/README.txt
@@ -78,9 +78,9 @@ Source installation
Download the source tarball, uncompress it, then run the install command::
- $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.47.tar.gz
- $ tar -xzvf distribute-0.6.47.tar.gz
- $ cd distribute-0.6.47
+ $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.48.tar.gz
+ $ tar -xzvf distribute-0.6.48.tar.gz
+ $ cd distribute-0.6.48
$ python setup.py install
---------------------------
diff --git a/distribute_setup.py b/distribute_setup.py
index d23f0ebe..112f9202 100644
--- a/distribute_setup.py
+++ b/distribute_setup.py
@@ -49,7 +49,7 @@ except ImportError:
args = [quote(arg) for arg in args]
return os.spawnl(os.P_WAIT, sys.executable, *args) == 0
-DEFAULT_VERSION = "0.6.47"
+DEFAULT_VERSION = "0.6.48"
DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
SETUPTOOLS_FAKED_VERSION = "0.6c11"
diff --git a/docs/conf.py b/docs/conf.py
index e6abf19b..9c9a05f2 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,9 +48,9 @@ copyright = u'2009-2011, The fellowship of the packaging'
# built documents.
#
# The short X.Y version.
-version = '0.6.47'
+version = '0.6.48'
# The full version, including alpha/beta/rc tags.
-release = '0.6.47'
+release = '0.6.48'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/pkg_resources.py b/pkg_resources.py
index c723d9a5..d47693d8 100644
--- a/pkg_resources.py
+++ b/pkg_resources.py
@@ -1018,7 +1018,7 @@ variable to point to an accessible directory.
extract, as it tracks the generated names for possible cleanup later.
"""
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)
try:
_bypass_ensure_directory(target_path)
diff --git a/release.py b/release.py
index 7d92e8d2..c2584411 100644
--- a/release.py
+++ b/release.py
@@ -22,7 +22,7 @@ try:
except Exception:
pass
-VERSION = '0.6.47'
+VERSION = '0.6.48'
PACKAGE_INDEX = 'https://pypi.python.org/pypi'
PACKAGE_INDEX = 'https://pypi.python.org/pypi'
diff --git a/setup.py b/setup.py
index b4443cea..cb2c4c59 100755
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,7 @@ exec(init_file.read(), d)
init_file.close()
SETUP_COMMANDS = d['__all__']
-VERSION = "0.6.47"
+VERSION = "0.6.48"
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py