Skip to content

Commit 46a1e00

Browse files
Jenkinsopenstack-gerrit
authored andcommitted
Merge "Sync from global-requirements"
2 parents adf77a5 + db90acb commit 46a1e00

3 files changed

Lines changed: 50 additions & 20 deletions

File tree

requirements.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
python-monascaclient
2-
Django<1.9,>=1.8
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+
python-monascaclient>=1.1.0 # Apache-2.0
5+
Django<1.9,>=1.8 # BSD

setup.py

100755100644
Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
1-
from setuptools import setup
1+
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12+
# implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
215

3-
setup(
4-
setup_requires=['pbr'],
16+
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
17+
import setuptools
18+
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+
27+
setuptools.setup(
28+
setup_requires=['pbr>=1.8'],
529
pbr=True)

test-requirements.txt

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
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.
14
# Hacking already pins down pep8, pyflakes and flake8
2-
hacking>=0.9.2,<0.10
5+
hacking>=0.12.0,<0.13 # Apache-2.0
36

4-
coverage>=3.6
5-
django-nose
6-
mock>=1.0
7-
funcsigs
8-
mox3>=0.7.0
9-
nodeenv
10-
nose
11-
nose-exclude
12-
nosexcover
13-
openstack.nose_plugin>=0.7
14-
nosehtmloutput>=0.0.3
15-
selenium
7+
coverage>=4.0 # Apache-2.0
8+
django-nose>=1.4.4 # BSD
9+
mock>=2.0 # BSD
10+
funcsigs>=0.4;python_version=='2.7' or python_version=='2.6' # Apache-2.0
11+
mox3>=0.7.0 # Apache-2.0
12+
nodeenv>=0.9.4 # BSD
13+
nose # LGPL
14+
nose-exclude # LGPL
15+
nosexcover # BSD
16+
openstack.nose-plugin>=0.7 # Apache-2.0
17+
nosehtmloutput>=0.0.3 # Apache-2.0
18+
selenium>=2.50.1 # Apache-2.0
1619
# Docs Requirements
17-
sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3
18-
oslosphinx
20+
sphinx!=1.3b1,<1.4,>=1.2.1 # BSD
21+
oslosphinx>=4.7.0 # Apache-2.0
1922
http://tarballs.openstack.org/horizon/horizon-master.tar.gz#egg=horizon

0 commit comments

Comments
 (0)