-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make pip upgrade + deps install consistent across actions
- Loading branch information
1 parent
39e4cda
commit 071e6e6
Showing
12 changed files
with
62 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,13 +43,14 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Upgrade pip | ||
- name: Install pip dependencies | ||
if: steps.changes.outputs.frontend == 'true' | ||
run: | | ||
pip install --upgrade pip==24.1 uv==0.2.17 | ||
python -m pip install --upgrade pip==24.1 | ||
pip install --upgrade uv==0.2.17 tox tox-uv==1.9.0 | ||
uv --version | ||
- name: Get pip cache dir | ||
- name: Get uv cache dir | ||
id: pip-cache | ||
if: steps.changes.outputs.frontend == 'true' | ||
shell: bash | ||
|
@@ -69,11 +70,6 @@ jobs: | |
if: steps.changes.outputs.frontend == 'true' && matrix.os == 'macos-latest' | ||
uses: crazy-max/[email protected] | ||
|
||
- name: Install Tox | ||
if: steps.changes.outputs.frontend == 'true' | ||
run: | | ||
pip install --upgrade tox tox-uv==1.9.0 | ||
- name: Remove existing containers | ||
if: steps.changes.outputs.frontend == 'true' | ||
continue-on-error: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,10 +29,11 @@ jobs: | |
|
||
- name: Install pip packages | ||
run: | | ||
pip install --upgrade pip==24.1 uv==0.2.17 | ||
python -m pip install --upgrade pip==24.1 | ||
pip install --upgrade uv==0.2.17 tox tox-uv==1.9.0 | ||
uv --version | ||
- name: Get pip cache dir | ||
- name: Get uv cache dir | ||
id: pip-cache | ||
shell: bash | ||
run: | | ||
|
@@ -47,10 +48,6 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-uv-py${{ matrix.python-version }}- | ||
- name: Install Tox | ||
run: | | ||
pip install --upgrade tox tox-uv==1.9.0 | ||
- uses: pre-commit/[email protected] | ||
|
||
- name: Check Protocol Version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters