diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-31 10:15:10 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-31 10:15:10 -0500 |
| commit | 314d143ffcc838e1dbf7177b601c139f8d0b609f (patch) | |
| tree | 4c63edea6d35632131f6dff85dd5d6fb46d471b8 | |
| parent | 54e96d8d8a6e18901d8e3e708fd0e82bfaba9569 (diff) | |
| download | external_python_setuptools-314d143ffcc838e1dbf7177b601c139f8d0b609f.tar.gz external_python_setuptools-314d143ffcc838e1dbf7177b601c139f8d0b609f.tar.bz2 external_python_setuptools-314d143ffcc838e1dbf7177b601c139f8d0b609f.zip | |
Restore _default_revctrl implementation (stubbed). Fixes #320.
| -rw-r--r-- | CHANGES.txt | 8 | ||||
| -rwxr-xr-x | setuptools/command/sdist.py | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 5161fbe5..9b8a81cb 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,6 +2,14 @@ CHANGES ======= +---- +10.1 +---- + +* Issue #320: Added a compatibility implementation of `sdist._default_revctrl` + so that systems relying on that interface do not fail (namely, Ubuntu 12.04 + and similar Debian releases). + ------ 10.0.1 ------ diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index 371bf547..a4e8288a 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -11,6 +11,7 @@ import pkg_resources READMES = ('README', 'README.rst', 'README.txt') +_default_revctrl = list def walk_revctrl(dirname=''): """Find all files under revision control""" |
