From 3831f691c1ab59ceaab667564163d2f28a41b575 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Tue, 22 Sep 2020 21:36:56 -0700 Subject: [PATCH] missed a format --- .ci/prep_azure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/prep_azure.py b/.ci/prep_azure.py index f6aeccb4..68b76def 100755 --- a/.ci/prep_azure.py +++ b/.ci/prep_azure.py @@ -62,7 +62,7 @@ if ci_lib.have_brew(): # setup venv # need wheel before building virtualenv because of bdist_wheel and setuptools deps -venv_steps = ['/usr/local/bin/python{pv} -m pip install -U pip wheel setuptools'] +venv_steps = ['/usr/local/bin/python{pv} -m pip install -U pip wheel setuptools'.format(pv=os.environ['PYTHONVERSION'])] if os.environ['PYTHONVERSION'].startswith('2'): venv_steps.extend([ '/usr/local/bin/python{pv} -m pip install -U virtualenv'.format(pv=os.environ['PYTHONVERSION']),