From caffed5ef24cab9623552de230e35136593ed276 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Sun, 29 Aug 2021 09:26:43 -0400 Subject: [PATCH] Pin importlib-metadata in CI The recent release of importlib-metadata has broken an interface that stevedore uses when looking for entrypoints (see https://github.com/python/importlib_metadata/issues/348 ). Several of our test/ci dependecies use stevedore for their plugin interfaces including stestr which is causing CI failures. To unblock CI this commit pins the importlib metadata version in our constraints file while the upstream issue is resolved. --- constraints.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/constraints.txt b/constraints.txt index b0df0155758..6d23e0d66c5 100644 --- a/constraints.txt +++ b/constraints.txt @@ -4,3 +4,4 @@ decorator==4.4.2 jax==0.2.13 jaxlib==0.1.67 networkx==2.5 +importlib-metadata==4.7.1