[Python-modules-commits] [python-fedora] 03/09: Work around broken setuptools
Sergio Durigan Junior
sergiodj-guest at moszumanska.debian.org
Tue Jul 19 23:50:00 UTC 2016
This is an automated email from the git hooks/post-receive script.
sergiodj-guest pushed a commit to branch master
in repository python-fedora.
commit e99bdf1119abce6de9c0ffef8f019087137f70c4
Author: Scott Kitterman <scott at kitterman.com>
Date: Thu Oct 8 12:03:40 2015 -0700
Work around broken setuptools
* Patch setup.py to use distutils setup as a workaround for problems with
python-setuptools > 17 (Closes: #789982)
Bug-Debian: http://bugs.debian.org/789982
Origin: vendor
Forwarded: not-needed
Last-Update: 2015-07-23
Patch-Name: setuptools_workaround.diff
---
setup.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index be0f27e..f4bd066 100755
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,8 @@ import sys
exec(compile(open("fedora/release.py").read(), "fedora/release.py", 'exec'))
-from setuptools import find_packages, setup
+from setuptools import find_packages
+from distutils.core import setup
setup(
name=NAME,
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-fedora.git
More information about the Python-modules-commits
mailing list