Skip to content

Commit 6c5f2e3

Browse files
author
OpenStack Proposal Bot
committed
Updated from global requirements
Change-Id: Idde32a0bdcee8843c09a968dff69b246b5e784f7
1 parent c744abd commit 6c5f2e3

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cliff>=1.4.3
33
keyring>=2.1
44
pycrypto>=2.6
55
python-glanceclient>=0.9.0
6-
python-keystoneclient>=0.7.0
6+
python-keystoneclient>=0.8.0
77
python-novaclient>=2.17.0
88
python-cinderclient>=1.0.6
99
requests>=1.1

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@
1717
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
1818
import setuptools
1919

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+
2028
setuptools.setup(
2129
setup_requires=['pbr'],
2230
pbr=True)

0 commit comments

Comments
 (0)