There was an error while loading. Please reload this page.
1 parent c744abd commit 6c5f2e3Copy full SHA for 6c5f2e3
2 files changed
requirements.txt
@@ -3,7 +3,7 @@ cliff>=1.4.3
3
keyring>=2.1
4
pycrypto>=2.6
5
python-glanceclient>=0.9.0
6
-python-keystoneclient>=0.7.0
+python-keystoneclient>=0.8.0
7
python-novaclient>=2.17.0
8
python-cinderclient>=1.0.6
9
requests>=1.1
setup.py
@@ -17,6 +17,14 @@
17
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
18
import setuptools
19
20
+# In python < 2.7.4, a lazy loading of package `pbr` will break
21
+# setuptools if some other modules registered functions in `atexit`.
22
+# solution from: http://bugs.python.org/issue15881#msg170215
23
+try:
24
+ import multiprocessing # noqa
25
+except ImportError:
26
+ pass
27
+
28
setuptools.setup(
29
setup_requires=['pbr'],
30
pbr=True)
0 commit comments