From 51291614d9deb5ee65daa93c405d39b4d6d0955c Mon Sep 17 00:00:00 2001 From: leoz-msft <114785068+leoz-msft@users.noreply.github.com> Date: Fri, 30 Sep 2022 17:52:30 -0700 Subject: [PATCH] Relax Regex requirement to include another version 2021.3.17 In Anaconda3 (Anaconda3-2021.05-Linux-x86_64.sh), Regex does not include the required version 2020.11.13. So in the isolated environment, CDM library(v1.6.1) fails to load. This PR is to add one more version 2021.3.17 to support it. --- objectModel/Python/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objectModel/Python/requirements.txt b/objectModel/Python/requirements.txt index 7909820cf..32777ae4b 100644 --- a/objectModel/Python/requirements.txt +++ b/objectModel/Python/requirements.txt @@ -2,5 +2,5 @@ nest-asyncio>=1.4.3,<2 msal>=1.14.0,<2 python-dateutil>=2.8.0 msrest>=0.6.21 -regex==2020.11.13 +regex>=2020.11.13,<=2021.3.17