From 4ed4fd08db67de69369f87862e43562c2e43fed5 Mon Sep 17 00:00:00 2001 From: Srikanth Chekuri Date: Sat, 19 Feb 2022 04:13:55 +0530 Subject: [PATCH] pin markupsafe version to 2.0.1 (#2474) --- dev-requirements.txt | 4 ++++ docs-requirements.txt | 4 ++++ tox.ini | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/dev-requirements.txt b/dev-requirements.txt index 44e20801416..c60f36745f3 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -13,3 +13,7 @@ readme-renderer~=24.0 grpcio-tools~=1.41.0 mypy-protobuf~=3.0.0 protobuf~=3.18.1 +# temporary fix. we should update the jinja, flask deps +# See https://github.com/pallets/markupsafe/issues/282 +# breaking change introduced in markupsafe causes jinja, flask to break +markupsafe==2.0.1 diff --git a/docs-requirements.txt b/docs-requirements.txt index a93eb8aa705..c70cefc8aae 100644 --- a/docs-requirements.txt +++ b/docs-requirements.txt @@ -19,3 +19,7 @@ flask~=1.0 opentracing~=2.2.0 thrift>=0.10.0 wrapt>=1.0.0,<2.0.0 +# temporary fix. we should update the jinja, flask deps +# See https://github.com/pallets/markupsafe/issues/282 +# breaking change introduced in markupsafe causes jinja, flask to break +markupsafe==2.0.1 diff --git a/tox.ini b/tox.ini index 4f7e1004691..694d3d78a64 100644 --- a/tox.ini +++ b/tox.ini @@ -230,6 +230,10 @@ deps = # needed for example trace integration flask~=1.1 requests~=2.7 + # temporary fix. we should update the jinja, flask deps + # See https://github.com/pallets/markupsafe/issues/282 + # breaking change introduced in markupsafe causes jinja, flask to break + markupsafe==2.0.1 commands_pre = pip install -e {toxinidir}/opentelemetry-api \