From 0b2e5297d0d35aa8444b4e8710c343f7b8618be0 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 4 Oct 2022 07:55:01 -0400 Subject: [PATCH] Pin importlib-metadata in CI (#22) The recent release of importlib-metadata broke compatibility with stevedore on Python 3.7. Stevedore is a dependency of a dependency of stestr which we use for running tests in CI so this is blocking CI from working and tests from running locally with Python 3.7. This commit pins the importlib-metadata version in CI to unblock things. --- constraints.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/constraints.txt b/constraints.txt index 369b924..530aa8c 100644 --- a/constraints.txt +++ b/constraints.txt @@ -1,2 +1,3 @@ pylint==2.4.4 astroid==2.3.3 +importlib-metadata==4.13.0;python_version<'3.8'