[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot]
2021-05-13 18:40:33 +00:00
parent 36ef6de2d6
commit 7cde8fb66e
2 changed files with 18 additions and 2 deletions
+9 -1
View File
@@ -236,7 +236,15 @@ def setup_python(
# ensure we have the version that matches our constraints
# use "--force-reinstall" ensures that it's installed as 'pip'
call(
["python", "-m", "pip", "install", "--force-reinstall", "pip", *dependency_constraint_flags],
[
"python",
"-m",
"pip",
"install",
"--force-reinstall",
"pip",
*dependency_constraint_flags,
],
env=env,
cwd="/tmp",
)
+9 -1
View File
@@ -180,7 +180,15 @@ def setup_python(
# ensure we have the version that matches our constraints
# use "--force-reinstall" ensures that it's installed as 'pip.exe'
call(
["python", "-m", "pip", "install", "--force-reinstall", "pip", *dependency_constraint_flags],
[
"python",
"-m",
"pip",
"install",
"--force-reinstall",
"pip",
*dependency_constraint_flags,
],
env=env,
)