Skip to content

Commit b4638b5

Browse files
authored
Virtualenv issue. (Azure#12200)
* Virtualenv issue.
1 parent deb77e6 commit b4638b5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

eng/ci_tools.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# requirements leveraged by ci tools
22
setuptools==44.1.0; python_version == '2.7'
33
setuptools==45.1.0; python_version >= '3.5'
4-
wheel==0.34.2
4+
virtualenv==20.0.23
5+
wheel==0.34.2
56
Jinja2==2.11.1
67
packaging==20.4
78
tox==3.14.6

eng/pipelines/templates/steps/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ steps:
2828
OSName: ${{ parameters.OSName }}
2929

3030
- script: |
31-
python -m pip install pip == 20.1
31+
python -m pip install pip==20.1
3232
pip install -r eng/ci_tools.txt
3333
pip --version
3434
displayName: 'Prep Environment'

eng/pipelines/templates/steps/run_pylint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ steps:
1313

1414

1515
- script: |
16+
python -m pip install pip==20.1
1617
pip install -r eng/ci_tools.txt
1718
displayName: 'Prep Environment'
1819
condition: succeededOrFailed()

0 commit comments

Comments
 (0)