-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not show progress bars on uv runs
- Loading branch information
Showing
12 changed files
with
31 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,14 @@ jobs: | |
python-version: "3.12" | ||
- name: Install uv | ||
run: | | ||
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.1.4/requirements/uv.txt | ||
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.3.1/requirements/uv.txt | ||
- name: Install project | ||
run: | | ||
uv venv --system | ||
uv pip install . | ||
uv --no-progress venv --system | ||
uv --no-progress pip install . | ||
- name: Update readme | ||
run: | | ||
uv run python -c 'from meta_package_manager.inventory import update_readme; update_readme()' | ||
uv --no-progress run python -c 'from meta_package_manager.inventory import update_readme; update_readme()' | ||
- name: Discard all local changes but the readme | ||
run: | | ||
# Remove untracked directories and files. | ||
|
@@ -63,6 +63,6 @@ jobs: | |
branch: update-readme | ||
|
||
autofix: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 | ||
# Depends on the previous job so that the Markdown syntax auto-fixer can have an effect on auto-updated content. | ||
needs: update-readme |
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 |
---|---|---|
|
@@ -8,4 +8,4 @@ name: Autolock | |
jobs: | ||
|
||
autolock: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 |
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 |
---|---|---|
|
@@ -20,4 +20,4 @@ name: Changelog & versions | |
jobs: | ||
|
||
changelog: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ name: Debug | |
jobs: | ||
|
||
debug: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 | ||
|
||
click-color-context: | ||
strategy: | ||
|
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 |
---|---|---|
|
@@ -17,4 +17,4 @@ name: Docs | |
jobs: | ||
|
||
docs: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 |
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 |
---|---|---|
|
@@ -11,4 +11,4 @@ name: Label sponsors | |
jobs: | ||
|
||
label-sponsors: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 |
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ name: Labeller (content-based) | |
jobs: | ||
|
||
labeller: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 | ||
with: | ||
extra-rules: | | ||
"🔌 bar-plugin": | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ name: Labeller (file-based) | |
jobs: | ||
|
||
labeller: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 | ||
with: | ||
extra-rules: | | ||
"🔌 bar-plugin": | ||
|
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 |
---|---|---|
|
@@ -24,14 +24,14 @@ jobs: | |
python-version: "3.12" | ||
- name: Install uv | ||
run: | | ||
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.1.4/requirements/uv.txt | ||
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.3.1/requirements/uv.txt | ||
- name: Install project | ||
run: | | ||
uv venv --system | ||
uv pip install . | ||
uv --no-progress venv --system | ||
uv --no-progress pip install . | ||
- name: Generate labels | ||
run: | | ||
uv run python ./.github/generate_labels.py | ||
uv --no-progress run python ./.github/generate_labels.py | ||
- name: Discard all local changes but the label definitions file | ||
run: | | ||
# Remove untracked directories and files. | ||
|
@@ -61,7 +61,7 @@ jobs: | |
branch: update-labels | ||
|
||
labels: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 | ||
needs: generate-labels | ||
with: | ||
extra-label-files: | | ||
|
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ name: Lint | |
jobs: | ||
|
||
lint: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ name: Build & release | |
jobs: | ||
|
||
release: | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].0 | ||
uses: kdeldycke/workflows/.github/workflows/[email protected].1 | ||
secrets: | ||
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | ||
|
||
|
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