We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60598b3 commit e6cda7cCopy full SHA for e6cda7c
requirements.txt
@@ -1,6 +1,6 @@
1
docutils==0.9.1
2
oslosphinx
3
pbr>=0.6,!=0.7,<1.0
4
-sphinx>=1.1.2,<1.2
+sphinx>=1.1.2,!=1.2.0,<1.3
5
testrepository>=0.0.18
6
testtools>=0.9.34
setup.py
@@ -17,6 +17,14 @@
17
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
18
import setuptools
19
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
+
28
setuptools.setup(
29
setup_requires=['pbr'],
30
pbr=True)
0 commit comments