File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ python-ceilometerclient>=1.0.6
15
15
python-cinderclient >= 1.0.6
16
16
python-glanceclient >= 0.9.0
17
17
python-heatclient >= 0.2.3
18
- python-keystoneclient >= 0.7 .0
18
+ python-keystoneclient >= 0.8 .0
19
19
python-neutronclient >= 2.3.4 ,< 3
20
20
python-novaclient >= 2.17.0
21
21
python-saharaclient >= 0.6.0
22
22
python-swiftclient >= 1.6
23
- python-troveclient >= 1.0.3
23
+ python-troveclient >= 1.0.4
24
24
pytz >= 2010h
25
25
six >= 1.6.0
Original file line number Diff line number Diff line change 17
17
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
18
18
import setuptools
19
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
+
20
28
setuptools .setup (
21
29
setup_requires = ['pbr' ],
22
30
pbr = True )
You can’t perform that action at this time.
0 commit comments