From c1d984285e0aab531abda99d55b4fcba2c633185 Mon Sep 17 00:00:00 2001 From: Suin Kim Date: Tue, 4 Oct 2022 18:26:09 +0900 Subject: [PATCH 1/2] Fix version of importlib-metadata as 4.13.0 --- requirements_bundles.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_bundles.txt b/requirements_bundles.txt index 3f57a20dd2..bbdaf8e3b7 100644 --- a/requirements_bundles.txt +++ b/requirements_bundles.txt @@ -4,5 +4,5 @@ # It's automatically installed when running npm run bundle # These can be removed when upgrading to Python 3.x -importlib-metadata>=1.6 # remove when on 3.8 +importlib-metadata==4.13.0 # remove when on 3.8 importlib_resources==1.5 # remove when on 3.9 From 96b864438876be3e665598b9621ae1144e9f73b7 Mon Sep 17 00:00:00 2001 From: Suin Kim Date: Tue, 4 Oct 2022 19:06:11 +0900 Subject: [PATCH 2/2] Update requirements_bundles.txt to set the version of importlib-metadata between 1.6 and 5.0 --- requirements_bundles.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_bundles.txt b/requirements_bundles.txt index bbdaf8e3b7..844b4c6eba 100644 --- a/requirements_bundles.txt +++ b/requirements_bundles.txt @@ -4,5 +4,5 @@ # It's automatically installed when running npm run bundle # These can be removed when upgrading to Python 3.x -importlib-metadata==4.13.0 # remove when on 3.8 +importlib-metadata>=1.6,<5.0 # remove when on 3.8 importlib_resources==1.5 # remove when on 3.9