mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 14:59:39 +00:00
fix: use --upgrade
rather than --ignore-installed
to upgrade pip (#268)
* fix: use `--upgrade` rather than `--ignore-installed` to upgrade pip This removes left over files when upgrading pip. * remove all installed python on macOS
This commit is contained in:
5
.github/workflows/build-python-packages.yml
vendored
5
.github/workflows/build-python-packages.yml
vendored
@ -105,6 +105,11 @@ jobs:
|
||||
- name: Fully cleanup the toolcache directory before testing
|
||||
run: ./helpers/clean-toolcache.ps1 -ToolName "Python"
|
||||
|
||||
- name: Delete macOS /Library/Frameworks/Python.framework
|
||||
if: matrix.platform == 'darwin'
|
||||
shell: bash
|
||||
run: if [ -d /Library/Frameworks/Python.framework ]; then sudo rm -rf /Library/Frameworks/Python.framework; fi
|
||||
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
|
Reference in New Issue
Block a user