From e85c2a6f035a016f80de3d5aebc026f28dfb6bc1 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 27 May 2020 10:27:14 -0500 Subject: [PATCH] Add dependency on yamllint dib-lint requires yamllint now, so we need to depend on it. Change-Id: Iccd2cdbb04bd9b429d8d19b31ff3b10cdd568e15 --- releasenotes/notes/yamllint-c07fd31780ec8d10.yaml | 5 +++++ requirements.txt | 3 ++- test-requirements.txt | 2 -- 3 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 releasenotes/notes/yamllint-c07fd31780ec8d10.yaml diff --git a/releasenotes/notes/yamllint-c07fd31780ec8d10.yaml b/releasenotes/notes/yamllint-c07fd31780ec8d10.yaml new file mode 100644 index 00000000..6033750b --- /dev/null +++ b/releasenotes/notes/yamllint-c07fd31780ec8d10.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + A dependency on ``yamllint`` was added because it is now + required by dib-lint. diff --git a/requirements.txt b/requirements.txt index f4db1184..b8e8eafa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,5 +8,6 @@ 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 +# NOTE(ianw) in here because dib-lint uses flake8 and yamllint flake8<4.0.0,>=3.6.0 # MIT +yamllint>=1.23.0 diff --git a/test-requirements.txt b/test-requirements.txt index 31ac5c98..560a57ad 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -12,5 +12,3 @@ testrepository>=0.0.18 # Apache-2.0/BSD testtools>=2.2.0 # MIT coverage!=4.4,>=4.0 # Apache-2.0 - -yamllint>=1.23.0