Skip to content

Commit

Permalink
Install wheel and setuptools
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Ryan <dan.ryan@canonical.com>
  • Loading branch information
techalchemy committed Mar 9, 2020
1 parent 254803c commit aefc775
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ install:
exit $LastExitCode
}
if ( $env:PYTHON -eq "3.4" ) {
Invoke-Expression "$py_exe -m pip install --upgrade --upgrade-strategy=eager pip==19.1"
Invoke-Expression "$py_exe -m pip install --upgrade --upgrade-strategy=eager pip==19.1 setuptools wheel"
} else {
Invoke-Expression "$py_exe -m pip install --upgrade --upgrade-strategy=eager pip"
Invoke-Expression "$py_exe -m pip install --upgrade --upgrade-strategy=eager pip setuptools wheel"
}
Invoke-Expression "$py_exe -m pip install --upgrade setuptools pytest pytest-xdist pytest-timeout"
Expand All @@ -143,13 +143,13 @@ install:
if ( $env:PIP ) {
Invoke-Expression "$py_exe -m pip install -e .[tests]"
If ($LastExitCode -ne 0) {
Invoke-Expression "$py_exe -m pip install -e .[tests] --no-use-pep517"
}
}
else {
Invoke-Expression "$py_exe -m pip install -e .[tests] --no-use-pep517"
}
If ($LastExitCode -ne 0) {
Invoke-Expression "$py_exe -m pip install -e .[tests] --no-use-pep517"
}
If ($LastExitCode -ne 0) {
exit $LastExitCode
}
Expand Down

0 comments on commit aefc775

Please sign in to comment.