mirror of https://github.com/astral-sh/uv
Install Python versions with previous uv release (#5717)
Part of https://github.com/astral-sh/uv/issues/5713 Shaves 50s or ~25% off the Ubuntu test run. Maybe 30s or 8% off macOS. Windows already uses the GitHub distributions. Note this is some of our only test coverage for Python version installs, we may want to add separate coverage to compensate.
This commit is contained in:
parent
b14945a7b1
commit
c558d70690
|
|
@ -156,7 +156,8 @@ jobs:
|
||||||
|
|
||||||
- name: "Install required Python versions"
|
- name: "Install required Python versions"
|
||||||
run: |
|
run: |
|
||||||
cargo run python install
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||||
|
uv python install
|
||||||
|
|
||||||
- name: "Install cargo nextest"
|
- name: "Install cargo nextest"
|
||||||
uses: taiki-e/install-action@v2
|
uses: taiki-e/install-action@v2
|
||||||
|
|
@ -193,7 +194,8 @@ jobs:
|
||||||
|
|
||||||
- name: "Install required Python versions"
|
- name: "Install required Python versions"
|
||||||
run: |
|
run: |
|
||||||
cargo run python install
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||||
|
uv python install
|
||||||
|
|
||||||
- name: "Install cargo nextest"
|
- name: "Install cargo nextest"
|
||||||
uses: taiki-e/install-action@v2
|
uses: taiki-e/install-action@v2
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue