0c94eef7be
This reverts commit6ee2995214
ande85c2a6f03
. I missed that if you pip install and then run dib-lint, it's not going to pick up the .yamllint file shipped here. Thus it gives spurious errors. The reason for this was simply better duplicate key detection in yaml files, which caused us problems with the kernel installs. However, at this point it seems just the old "does it load" test from pyyaml will be enough. Change-Id: I87a9fc9bb119cfeffad48fc0fa0df31f0181825d
13 lines
535 B
Plaintext
13 lines
535 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.
|
|
# NOTE(fdegir): NetworkX 2.3 dropped support for Python 2
|
|
networkx>=1.10,<2.3;python_version<'3.0' # BSD
|
|
networkx>=1.10;python_version>='3.4' # BSD
|
|
pbr!=2.1.0,>=2.0.0 # Apache-2.0
|
|
PyYAML>=3.12 # MIT
|
|
six>=1.10.0 # MIT
|
|
stevedore>=1.20.0 # Apache-2.0
|
|
# NOTE(ianw) in here because dib-lint uses flake8
|
|
flake8<4.0.0,>=3.6.0 # MIT
|