Skip to content

Commit 08490c7

Browse files
committed
update from global requirements
1 parent c335ed0 commit 08490c7

File tree

3 files changed

+33
-19
lines changed

3 files changed

+33
-19
lines changed

requirements.txt

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
1-
pbr>=0.6,!=0.7,<1.0
2-
oslo.config>=2.3.0
3-
oslo.log>=1.8.0
4-
oslo.utils
1+
# The order of packages is significant, because pip processes them in the order
2+
# of appearance. Changing the order has an impact on the overall integration
3+
# process, which may cause wedges in the gate later.
4+
pbr>=1.6
5+
oslo.config>=2.3.0 # Apache-2.0
6+
oslo.log>=1.8.0 # Apache-2.0
7+
oslo.utils!=2.6.0,>=2.0.0 # Apache-2.0
58

6-
six >=1.4.0
9+
six>=1.9.0
710

8-
python-novaclient
9-
python-keystoneclient
10-
python-glanceclient
11-
python-ceilometerclient
11+
python-novaclient!=2.33.0,>=2.28.1
12+
python-keystoneclient!=1.8.0,<3.0.0,>=1.6.0
13+
python-glanceclient>=0.18.0
14+
python-ceilometerclient>=1.5.0
1215

1316

17+
python-dateutil>=2.4.2
18+
1419
dirq
15-
python-dateutil

setup.py

100755100644
Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
32
#
43
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,6 +16,14 @@
1716
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
1817
import setuptools
1918

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

test-requirements.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
hacking>=0.9.2,<0.10
1+
# The order of packages is significant, because pip processes them in the order
2+
# of appearance. Changing the order has an impact on the overall integration
3+
# process, which may cause wedges in the gate later.
4+
hacking<0.10,>=0.9.2
25

36
coverage>=3.6
47
discover
5-
fixtures>=0.3.14
6-
python-subunit
7-
sphinx>=1.1.2
8-
oslosphinx
8+
fixtures>=1.3.1
9+
python-subunit>=0.0.18
10+
sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2
11+
oslosphinx>=2.5.0 # Apache-2.0
912
testrepository>=0.0.18
1013
testscenarios>=0.4
11-
testtools>=0.9.34
14+
testtools>=1.4.0
1215

13-
mock
16+
mock>=1.2

0 commit comments

Comments
 (0)