Tweak requirements to be compatible with global-requirements
Change-Id: Ife81d109b61d3c24a594e7f6e582e064f161140f
This commit is contained in:
parent
9ff7290078
commit
37630493f5
12
doc-requirements.txt
Normal file
12
doc-requirements.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
actdiag
|
||||||
|
blockdiag
|
||||||
|
docutils==0.11
|
||||||
|
nwdiag
|
||||||
|
oslosphinx
|
||||||
|
seqdiag
|
||||||
|
sphinx
|
||||||
|
sphinxcontrib-actdiag
|
||||||
|
sphinxcontrib-blockdiag
|
||||||
|
sphinxcontrib-nwdiag
|
||||||
|
sphinxcontrib-seqdiag
|
||||||
|
graphviz
|
@ -1,43 +1,33 @@
|
|||||||
actdiag
|
# The order of packages is significant, because pip processes them in the order
|
||||||
|
# of appearance. Changing the order has an impact on the overall integration
|
||||||
|
# process, which may cause wedges in the gate later.
|
||||||
alembic>=0.7.1
|
alembic>=0.7.1
|
||||||
blockdiag
|
pecan>=0.8.0
|
||||||
docutils==0.11
|
pbr>=0.6,!=0.7,<1.0
|
||||||
nwdiag
|
SQLAlchemy>=0.9.7,<=0.9.99
|
||||||
oslosphinx
|
|
||||||
pecan>=0.7.0
|
|
||||||
pbr>=0.6,<1.0
|
|
||||||
seqdiag
|
|
||||||
sphinx
|
|
||||||
sphinxcontrib-actdiag
|
|
||||||
sphinxcontrib-blockdiag
|
|
||||||
sphinxcontrib-nwdiag
|
|
||||||
sphinxcontrib-seqdiag
|
|
||||||
SQLAlchemy>=0.7.8,<=0.9.99
|
|
||||||
graphviz
|
|
||||||
|
|
||||||
anyjson>=0.3.3
|
anyjson>=0.3.3
|
||||||
Babel>=1.3
|
Babel>=1.3
|
||||||
eventlet>=0.13.0
|
eventlet>=0.15.2
|
||||||
requests>=1.2.1
|
requests>=2.2.0,!=2.4.0
|
||||||
jsonrpclib
|
jsonrpclib
|
||||||
netaddr>=0.7.6
|
netaddr>=0.7.12
|
||||||
python-neutronclient>=2.3.6,<3
|
python-neutronclient>=2.3.6,<3
|
||||||
WebOb>=1.2.3
|
WebOb>=1.2.3
|
||||||
six>=1.7.0
|
six>=1.7.0
|
||||||
oslo.config>=1.4.0 # Apache-2.0
|
oslo.config>=1.6.0 # Apache-2.0
|
||||||
oslo.db>=1.1.0 # Apache-2.0
|
oslo.db>=1.3.0 # Apache-2.0
|
||||||
oslo.i18n>=1.0.0 # Apache-2.0
|
oslo.i18n>=1.0.0 # Apache-2.0
|
||||||
oslo.messaging>=1.4.0
|
oslo.messaging>=1.4.0,!=1.5.0
|
||||||
oslo.middleware>=0.1.0 # Apache-2.0
|
oslo.middleware>=0.3.0 # Apache-2.0
|
||||||
oslo.rootwrap>=1.3.0
|
oslo.rootwrap>=1.3.0
|
||||||
oslo.serialization>=1.0.0 # Apache-2.0
|
oslo.serialization>=1.2.0 # Apache-2.0
|
||||||
oslo.utils>=1.0.0 # Apache-2.0
|
oslo.utils>=1.2.0 # Apache-2.0
|
||||||
PyMySQL>=0.6.3
|
PyMySQL>=0.6.2 # MIT License
|
||||||
python-barbicanclient>=3.0
|
python-barbicanclient>=2.1.0,!=3.0.0
|
||||||
python-keystoneclient>=0.11.1
|
python-keystoneclient>=0.11.1
|
||||||
python-novaclient>=2.17.0
|
python-novaclient>=2.18.0
|
||||||
posix_ipc
|
posix_ipc
|
||||||
pyOpenSSL>=0.14
|
pyOpenSSL>=0.11
|
||||||
wsme==0.6.1
|
WSME>=0.6
|
||||||
pyasn1
|
pyasn1
|
||||||
pyasn1_modules
|
pyasn1_modules
|
||||||
|
11
setup.py
11
setup.py
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# Copyright (c) 2014 eNovance
|
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
@ -14,8 +14,17 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
|
# In python < 2.7.4, a lazy loading of package `pbr` will break
|
||||||
|
# setuptools if some other modules registered functions in `atexit`.
|
||||||
|
# solution from: http://bugs.python.org/issue15881#msg170215
|
||||||
|
try:
|
||||||
|
import multiprocessing # noqa
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
setup_requires=['pbr'],
|
setup_requires=['pbr'],
|
||||||
pbr=True)
|
pbr=True)
|
||||||
|
@ -1,14 +1,17 @@
|
|||||||
|
# The order of packages is significant, because pip processes them in the order
|
||||||
|
# of appearance. Changing the order has an impact on the overall integration
|
||||||
|
# process, which may cause wedges in the gate later.
|
||||||
hacking>=0.9.1,<0.10
|
hacking>=0.9.1,<0.10
|
||||||
|
|
||||||
cliff>=1.6.0
|
cliff>=1.7.0 # Apache-2.0
|
||||||
coverage>=3.6
|
coverage>=3.6
|
||||||
discover
|
discover
|
||||||
fixtures>=0.3.14
|
fixtures>=0.3.14
|
||||||
mock>=1.0
|
mock>=1.0
|
||||||
python-subunit>=0.0.18
|
python-subunit>=0.0.18
|
||||||
ordereddict
|
ordereddict
|
||||||
oslotest==1.0.0
|
oslotest>=1.2.0 # Apache-2.0
|
||||||
testrepository>=0.0.18
|
testrepository>=0.0.18
|
||||||
testtools>=0.9.34
|
testtools>=0.9.36,!=1.2.0
|
||||||
WebTest>=2.0
|
WebTest>=2.0
|
||||||
doc8
|
doc8
|
||||||
|
1
tox.ini
1
tox.ini
@ -9,6 +9,7 @@ setenv = VIRTUAL_ENV={envdir}
|
|||||||
install_command = pip install -U {opts} {packages}
|
install_command = pip install -U {opts} {packages}
|
||||||
deps = -r{toxinidir}/requirements.txt
|
deps = -r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/test-requirements.txt
|
-r{toxinidir}/test-requirements.txt
|
||||||
|
-r{toxinidir}/doc-requirements.txt
|
||||||
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
||||||
|
|
||||||
[testenv:pep8]
|
[testenv:pep8]
|
||||||
|
Loading…
Reference in New Issue
Block a user