File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 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
1922http://tarballs.openstack.org/horizon/horizon-master.tar.gz#egg=horizon
You can’t perform that action at this time.
0 commit comments