Skip to content

Commit ef6ca9c

Browse files
authored
Update Python package installation steps in CI setup (#1491)
1 parent 947c694 commit ef6ca9c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.azure-pipelines/templates/setup-ci-machine.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
steps:
22
- script: python -m pip install --upgrade pip
33
displayName: 'Upgrade pip'
4-
- script: pip install wheel
5-
displayName: 'Install Wheel'
6-
- script: "pip install 'pytest>=7.0.0'"
4+
- script: pip install wheel==0.30.0 setuptools==70.0.0
5+
displayName: 'Install Wheel & Setuptools'
6+
- script: "pip install pytest==6.2.5"
77
displayName: 'Install pytest'
88
- script: pip install coverage
99
displayName: 'Install coverage'

0 commit comments

Comments
 (0)