mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-27 15:57:28 -07:00
Avoids circular dependency. Bug: https://bugs.gentoo.org/572792 Package-Manager: portage-2.2.27_p49
23 lines
545 B
Diff
23 lines
545 B
Diff
Force distutils to avoid depending on setuptools
|
|
|
|
distutils and setuptools have differing behavior in regard to egg-info
|
|
directories versus files, so we need to ensure that no automagic behavior
|
|
occurs here.
|
|
|
|
We cannot hard-depend on setuptools due to a circular dependency.
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -1,9 +1,6 @@
|
|
from __future__ import with_statement
|
|
|
|
-try:
|
|
- from setuptools import setup
|
|
-except ImportError:
|
|
- from distutils.core import setup
|
|
+from distutils.core import setup
|
|
|
|
import six
|
|
|