
This creates a dedicated doc/requirements.txt for doc-only dependencies like sphinx packages so we can decouple those from the test-requirements.txt. As a result, the missing oslo.serialization runtime dependency is added (I used the same version that python-novaclient uses). Due to change If558f184c959e4b63b56dec3ca1571d1034cfe5c in the openstack/requirements repo, in order to pass the requirements-check job we have to specify both the py27 and py3 versions for sphinx. Change-Id: I8bc3330a456f8bb76a17c4277a094a64fe9be449
15 lines
513 B
Plaintext
15 lines
513 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.
|
|
|
|
coverage!=4.4,>=4.0 # Apache-2.0
|
|
fixtures>=3.0.0 # Apache-2.0/BSD
|
|
hacking>=1.1.0,<1.2.0 # Apache-2.0
|
|
mock>=2.0.0 # BSD
|
|
oslotest>=3.2.0 # Apache-2.0
|
|
python-subunit>=1.0.0 # Apache-2.0/BSD
|
|
stestr>=2.0.0 # Apache-2.0
|
|
testscenarios>=0.4 # Apache-2.0/BSD
|
|
testtools>=2.2.0 # MIT
|
|
tempest>=17.1.0 # Apache-2.0
|