1bdc8fa5c1
Setuptools gives 2 errors with the current cinderlib Python package: - Project's description-file has an unsupported directive. - test-requirements has a github reference. We fix the first issue by removing the git repository from the test requirements and adding it to the Tox file while adding cinder to the required-projects to allow cross-repo denedencies. We also add os-brick since we are currently also very dependent on it on the nos_brick.py code. For the second issue we create a new DESCRIPTION.rst file that doesn't include the "raw" directive unsupported by PyPi. This patch will allow us to add the publish-to-pypi job to the project-config repository. Required-By: I9d8d9f7d802a27c3bfe3dbc0ee84cc24eee24ebc Change-Id: Id029cedef513753700a10bcae761fdc1807964e1
13 lines
452 B
Plaintext
13 lines
452 B
Plaintext
# 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.
|
|
|
|
pbr!=2.1.0,>=2.0.0 # Apache-2.0
|
|
hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0
|
|
coverage!=4.4,>=4.0 # Apache-2.0
|
|
ddt>=1.0.1 # MIT
|
|
oslotest>=3.2.0 # Apache-2.0
|
|
testscenarios>=0.4 # Apache-2.0/BSD
|
|
testtools>=2.2.0 # MIT
|
|
stestr>=1.0.0 # Apache-2.0
|