diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-02 12:13:48 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-02 12:13:48 -0400 |
| commit | 2676b4bba27be4fb32304fc1ce852de0c6d08b72 (patch) | |
| tree | 81f4cb3db8ed791c4284651e100b098949e112be | |
| parent | dba8600999daaf18d207c61c4ce5168d52bc5f60 (diff) | |
| parent | 132ef1524599896fd97bc1477d86a339bcf51415 (diff) | |
| download | python-setuptools-git-2676b4bba27be4fb32304fc1ce852de0c6d08b72.tar.gz | |
Merge 0.6.48 with native Python 3 code
--HG--
branch : distribute
| -rw-r--r-- | .hgtags | 1 | ||||
| -rw-r--r-- | CHANGES.txt | 7 | ||||
| -rwxr-xr-x | README.txt | 6 | ||||
| -rw-r--r-- | distribute_setup.py | 2 | ||||
| -rw-r--r-- | docs/conf.py | 4 | ||||
| -rw-r--r-- | pkg_resources.py | 2 | ||||
| -rw-r--r-- | release.py | 2 | ||||
| -rwxr-xr-x | setup.py | 2 |
8 files changed, 17 insertions, 9 deletions
@@ -57,3 +57,4 @@ f30167716b659f96c5e0b7ea3d5be2bcff8c0eac 0.6.42 ddca71ae5ceb9b14512dc60ea83802c10e224cf0 0.6.45 b57e5ba934767dd498669b17551678081b3047b5 0.6.46 ee2c967017024197b38e39ced852808265387a4b 0.6.47 +cae9127e0534fc46d7ddbc11f68dc88fd9311459 0.6.48 diff --git a/CHANGES.txt b/CHANGES.txt index 3baf6e7a..3efef119 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,13 @@ CHANGES ======= ------ +0.6.48 +------ + +* Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in + 0.6.46 (redo). + +------ 0.6.47 ------ @@ -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.48.tar.gz - $ tar -xzvf distribute-0.6.48.tar.gz - $ cd distribute-0.6.48 + $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz + $ tar -xzvf distribute-0.6.49.tar.gz + $ cd distribute-0.6.49 $ python setup.py install --------------------------- diff --git a/distribute_setup.py b/distribute_setup.py index 112f9202..3553b213 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.48" +DEFAULT_VERSION = "0.6.49" 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 9c9a05f2..4146dcaa 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.48' +version = '0.6.49' # The full version, including alpha/beta/rc tags. -release = '0.6.48' +release = '0.6.49' # 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 d47693d8..c27baab4 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -1029,7 +1029,7 @@ variable to point to an accessible directory. return target_path @staticmethod - def warn_unsafe_extraction_path(path): + def _warn_unsafe_extraction_path(path): """ If the default extraction path is overridden and set to an insecure location, such as /tmp, it opens up an opportunity for an attacker to @@ -22,7 +22,7 @@ try: except Exception: pass -VERSION = '0.6.48' +VERSION = '0.6.49' PACKAGE_INDEX = 'https://pypi.python.org/pypi' PACKAGE_INDEX = 'https://pypi.python.org/pypi' @@ -47,7 +47,7 @@ exec(init_file.read(), d) init_file.close() SETUP_COMMANDS = d['__all__'] -VERSION = "0.6.48" +VERSION = "0.6.49" from setuptools import setup, find_packages from setuptools.command.build_py import build_py as _build_py |
