Merge "Update sphinx version"

This commit is contained in:
Jenkins 2016-11-25 10:02:52 +00:00 committed by Gerrit Code Review
commit f8a6bfe3b9
2 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,6 @@
pbr>=0.6,<1.0
# 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>=1.6 # Apache-2.0
oslosphinx
sphinx>=1.1.2,<1.2
sphinx!=1.3b1,<1.4,>=1.2.1 # BSD

10
setup.py Executable file → Normal file
View File

@ -16,6 +16,14 @@
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'],
setup_requires=['pbr>=1.8'],
pbr=True)