Updated from global requirements

Change-Id: I7d73b83a6bead795352c208d6241aebfbbfb2cf3
This commit is contained in:
OpenStack Proposal Bot
2014-12-12 22:22:14 +00:00
parent 8dd9da1f42
commit 35cdd7f940
3 changed files with 20 additions and 6 deletions

View File

@@ -1,5 +1,8 @@
pbr>=0.8.1
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
pbr>=0.6,!=0.7,<1.0
Babel>=1.3
fixtures>=0.3.14
oslo.config>=1.4.0.0a3
oslo.config>=1.4.0 # Apache-2.0
iso8601>=0.1.9

View File

@@ -17,6 +17,14 @@
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools
# In python < 2.7.4, a lazy loading of package `pbr` will break
# setuptools if some other modules registered functions in `atexit`.
# solution from: http://bugs.python.org/issue15881#msg170215
try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup(
setup_requires=['pbr'],
pbr=True)

View File

@@ -1,11 +1,14 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
hacking>=0.9.2,<0.10
coverage>=3.6
discover
python-subunit
sphinx>=1.1.2
oslosphinx
python-subunit>=0.0.18
sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3
oslosphinx>=2.2.0 # Apache-2.0
testrepository>=0.0.18
testscenarios>=0.4
testtools>=0.9.34
testtools>=0.9.36,!=1.2.0
mock>=1.0