Skip to content

Commit 1f5730d

Browse files
author
OpenStack Proposal Bot
committed
Updated from global requirements
Change-Id: If8e08b4fb3fa32c9e9b6945a6833c97f4b499f1f
1 parent 53eb116 commit 1f5730d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ python-ceilometerclient>=1.0.6
1515
python-cinderclient>=1.0.6
1616
python-glanceclient>=0.9.0
1717
python-heatclient>=0.2.3
18-
python-keystoneclient>=0.7.0
18+
python-keystoneclient>=0.8.0
1919
python-neutronclient>=2.3.4,<3
2020
python-novaclient>=2.17.0
2121
python-saharaclient>=0.6.0
2222
python-swiftclient>=1.6
23-
python-troveclient>=1.0.3
23+
python-troveclient>=1.0.4
2424
pytz>=2010h
2525
six>=1.6.0

setup.py

+8
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)