Skip to content

Commit e6cda7c

Browse files
author
OpenStack Proposal Bot
committed
Updated from global requirements
Change-Id: I03c975e6ec0b0e169f039fb71686a4fcc9d81c48
1 parent 60598b3 commit e6cda7c

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
docutils==0.9.1
22
oslosphinx
33
pbr>=0.6,!=0.7,<1.0
4-
sphinx>=1.1.2,<1.2
4+
sphinx>=1.1.2,!=1.2.0,<1.3
55
testrepository>=0.0.18
66
testtools>=0.9.34

setup.py

+8
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@
1717
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
1818
import setuptools
1919

20+
# In python < 2.7.4, a lazy loading of package `pbr` will break
21+
# setuptools if some other modules registered functions in `atexit`.
22+
# solution from: http://bugs.python.org/issue15881#msg170215
23+
try:
24+
import multiprocessing # noqa
25+
except ImportError:
26+
pass
27+
2028
setuptools.setup(
2129
setup_requires=['pbr'],
2230
pbr=True)

0 commit comments

Comments
 (0)