Updated from global requirements
Change-Id: Ie03659997dba4e415c2499f5e88ac95ad53f295c
This commit is contained in:
parent
3bdb1d8f7a
commit
01884b089d
@ -1 +1 @@
|
||||
Babel>=0.9.6
|
||||
Babel>=1.3
|
||||
|
8
setup.py
8
setup.py
@ -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)
|
||||
|
@ -1,6 +1,6 @@
|
||||
hacking>=0.5.6,<0.8
|
||||
hacking>=0.8.0,<0.9
|
||||
|
||||
sphinx>=1.1.2
|
||||
sphinx>=1.1.2,<1.2
|
||||
oslosphinx
|
||||
|
||||
oslotest
|
||||
|
Loading…
x
Reference in New Issue
Block a user