Updated from global requirements

Change-Id: I227e5611243ddcdcc779736c657fd7d6ac04dad7
This commit is contained in:
OpenStack Proposal Bot 2014-08-30 08:57:59 +00:00
parent aaf1869cc4
commit bc32628518
4 changed files with 16 additions and 8 deletions

View File

@ -1 +1 @@
six>=1.4.1
six>=1.7.0

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

@ -2,10 +2,10 @@ hacking>=0.9.2,<0.10
discover
fixtures>=0.3.14
python-subunit
testrepository>=0.0.17
python-subunit>=0.0.18
testrepository>=0.0.18
testscenarios>=0.4
testtools>=0.9.32
testtools>=0.9.34
# when we can require tox>= 1.4, this can go into tox.ini:
# [testenv:cover]

View File

@ -2,13 +2,13 @@ hacking>=0.9.2,<0.10
discover
fixtures>=0.3.14
python-subunit
testrepository>=0.0.17
python-subunit>=0.0.18
testrepository>=0.0.18
testscenarios>=0.4
testtools>=0.9.32
testtools>=0.9.34
# mocking framework
mock>=1.0
# rootwrap daemon's client should be verified to run in eventlet
eventlet>=0.13.0
eventlet>=0.15.1