From aed261064efb8b68a4d47f798342a0319ada39fa Mon Sep 17 00:00:00 2001 From: Alex Boten Date: Mon, 7 Dec 2020 21:25:32 -0800 Subject: [PATCH 1/3] pin version of pip installed --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index b9682256458..ba814a0e692 100644 --- a/tox.ini +++ b/tox.ini @@ -80,7 +80,7 @@ changedir = commands_pre = ; Install without -e to test the actual installation - py3{5,6,7,8}: python -m pip install -U pip setuptools wheel + py3{5,6,7,8}: python -m pip install -U pip==20.2.4 setuptools wheel ; Install common packages for all the tests. These are not needed in all the ; cases but it saves a lot of boilerplate in this file. test: pip install {toxinidir}/opentelemetry-api {toxinidir}/opentelemetry-sdk {toxinidir}/tests/util From c946c5a436b37a9a089f6f1acd7ba77fb029a669 Mon Sep 17 00:00:00 2001 From: Alex Boten Date: Mon, 7 Dec 2020 21:27:05 -0800 Subject: [PATCH 2/3] pin pip in eachdist --- scripts/eachdist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/eachdist.py b/scripts/eachdist.py index cfa1764ab37..7964d74a0f4 100755 --- a/scripts/eachdist.py +++ b/scripts/eachdist.py @@ -444,7 +444,7 @@ def install_args(args): "pip", "install", "--upgrade", - "pip", + "pip==20.2.4", "setuptools", "wheel", ] From 975e558b189e6de09d028cb62d6ad3b247d74310 Mon Sep 17 00:00:00 2001 From: Alex Boten Date: Mon, 7 Dec 2020 21:43:03 -0800 Subject: [PATCH 3/3] pin pip in tox file --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index ba814a0e692..85db0cc4231 100644 --- a/tox.ini +++ b/tox.ini @@ -139,6 +139,7 @@ deps = httpretty commands_pre = + python -m pip install -U pip==20.2.4 python scripts/eachdist.py install --editable --with-test-deps commands =