You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2021/02/04 23:34:44 UTC

[trafficserver] branch 7.1.x updated: autest environment setup: upgrade setuptools and wheel (#7305)

This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch 7.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/7.1.x by this push:
     new f8aabf2  autest environment setup: upgrade setuptools and wheel (#7305)
f8aabf2 is described below

commit f8aabf23d7ca1d08445d1c684d0b09b60b87816e
Author: Brian Neradt <br...@gmail.com>
AuthorDate: Thu Feb 4 17:34:29 2021 -0600

    autest environment setup: upgrade setuptools and wheel (#7305)
    
    This address issues with the AuTest Python virtual environment
    configuration by ensuring an updated setuptools and wheel.
---
 tests/bootstrap.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/bootstrap.py b/tests/bootstrap.py
index 0d1194f..8eb807a 100755
--- a/tests/bootstrap.py
+++ b/tests/bootstrap.py
@@ -178,7 +178,7 @@ def venv_cmds(path):
     return [
         # first command only needed for rhel and centos systems at this time
         extra + " virtualenv --python=python3 {0}".format(path),
-        extra + " {0}/bin/pip install pip --upgrade".format(path)
+        extra + " {0}/bin/pip install pip setuptools wheel --upgrade".format(path)
     ]