Updated from global requirements
Change-Id: Idea153aebacb98b0ebaf416ab3ceb8ae0991b699
This commit is contained in:
parent
4e7a576227
commit
6d7fc83dbc
@ -3,11 +3,11 @@
|
|||||||
# process, which may cause wedges in the gate later.
|
# process, which may cause wedges in the gate later.
|
||||||
|
|
||||||
pbr>=0.6,!=0.7,<1.0
|
pbr>=0.6,!=0.7,<1.0
|
||||||
Babel>=0.9.6
|
Babel>=1.3
|
||||||
iso8601>=0.1.9
|
iso8601>=0.1.9
|
||||||
fixtures>=0.3.14
|
fixtures>=0.3.14
|
||||||
oslo.config>=1.4.0.0a3
|
oslo.config>=1.4.0.0a3
|
||||||
oslo.i18n>=0.1.0
|
oslo.i18n>=0.2.0 # Apache-2.0
|
||||||
oslo.utils>=0.2.0
|
oslo.utils>=0.2.0 # Apache-2.0
|
||||||
posix_ipc
|
posix_ipc
|
||||||
six>=1.7.0
|
six>=1.7.0
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
# of appearance. Changing the order has an impact on the overall integration
|
# of appearance. Changing the order has an impact on the overall integration
|
||||||
# process, which may cause wedges in the gate later.
|
# process, which may cause wedges in the gate later.
|
||||||
|
|
||||||
Babel>=0.9.6
|
Babel>=1.3
|
||||||
iso8601>=0.1.9
|
iso8601>=0.1.9
|
||||||
eventlet>=0.13.0
|
eventlet>=0.15.1
|
||||||
greenlet>=0.3.2
|
greenlet>=0.3.2
|
||||||
fixtures>=0.3.14
|
fixtures>=0.3.14
|
||||||
oslo.config>=1.4.0.0a3
|
oslo.config>=1.4.0.0a3
|
||||||
oslo.i18n>=0.2.0
|
oslo.i18n>=0.2.0 # Apache-2.0
|
||||||
oslo.utils>=0.2.0
|
oslo.utils>=0.2.0 # Apache-2.0
|
||||||
posix_ipc
|
posix_ipc
|
||||||
six>=1.7.0
|
six>=1.7.0
|
||||||
|
8
setup.py
8
setup.py
@ -17,6 +17,14 @@
|
|||||||
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
|
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
|
||||||
import setuptools
|
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(
|
setuptools.setup(
|
||||||
setup_requires=['pbr'],
|
setup_requires=['pbr'],
|
||||||
pbr=True)
|
pbr=True)
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
# process, which may cause wedges in the gate later.
|
# process, which may cause wedges in the gate later.
|
||||||
|
|
||||||
hacking>=0.9.1,<0.10
|
hacking>=0.9.1,<0.10
|
||||||
oslotest
|
oslotest>=1.1.0.0a2
|
||||||
|
|
||||||
# These are needed for docs generation
|
# These are needed for docs generation
|
||||||
oslosphinx
|
oslosphinx>=2.2.0.0a2
|
||||||
sphinx>=1.1.2,!=1.2.0,<1.3
|
sphinx>=1.1.2,!=1.2.0,<1.3
|
||||||
|
Loading…
Reference in New Issue
Block a user