Skip to content

Commit

Permalink
[changelog] Release v4.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jan 8, 2025
1 parent 51ebcb9 commit 185965c
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 44 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jobs:
fetch-depth: 0
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Run gha-utils metadata
id: project-metadata
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: >
uvx
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/gha-utils.txt
--
gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT"
Expand All @@ -74,7 +74,7 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Run autopep8
if: needs.project-metadata.outputs.python_files
# Ruff is not wrapping comments: https://github.com/astral-sh/ruff/issues/7414
Expand All @@ -84,7 +84,7 @@ jobs:
# Explicit list of files is provided, as autopep8 is not able to handle find files in ".github" subdirectory.
run: >
uvx
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/autopep8.txt
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/autopep8.txt
--
autopep8 --recursive --in-place --max-line-length 88 --select E501 --aggressive
${{ needs.project-metadata.outputs.python_files }}
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
- name: Install Ruff
run: >
uv tool install --with-requirements
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/ruff.txt ruff
https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/ruff.txt ruff
- name: Run Ruff check
run: |
ruff check --config ./ruff.toml
Expand All @@ -160,7 +160,7 @@ jobs:
# https://github.com/astral-sh/ruff/issues/3792
run: >
uvx
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/blacken-docs.txt
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/blacken-docs.txt
--
blacken-docs
--line-length 88
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Sync uv.lock
run: |
uv --no-progress sync --upgrade
Expand Down Expand Up @@ -226,11 +226,11 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install mdformat
run: >
uv tool install --with-requirements
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/mdformat.txt mdformat
https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/mdformat.txt mdformat
- name: Install shfmt
run: |
sudo apt install --yes shfmt
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install bump-my-version
run: >
uv tool install --with-requirements
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/bump-my-version.txt bump-my-version
https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/bump-my-version.txt bump-my-version
- name: ${{ matrix.part }} version bump
# TODO: get configuration URL once https://github.com/callowayproject/bump-my-version/issues/148 is addressed,
# so we can factorize projects' pyproject.toml files to kdeldycke/workflow/pyproject.toml .
Expand Down Expand Up @@ -104,11 +104,11 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install bump-my-version
run: >
uv tool install --with-requirements
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/bump-my-version.txt bump-my-version
https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/bump-my-version.txt bump-my-version
- name: Extract version
id: get_version
run: |
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
- name: Add new changelog entry
run: >
uvx
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/gha-utils.txt
--
gha-utils --verbosity DEBUG changelog ./changelog.md
- name: Version bump
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ jobs:
fetch-depth: 0
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Generate .mailmap
run: >
uvx
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/gha-utils.txt
--
gha-utils --verbosity DEBUG mailmap-sync --skip-if-missing ./.mailmap
- uses: peter-evans/[email protected]
Expand Down Expand Up @@ -142,14 +142,14 @@ jobs:
fetch-depth: 0
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Run gha-utils metadata
id: project-metadata
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: >
uvx
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/gha-utils.txt
--
gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT"
Expand All @@ -163,12 +163,12 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install pipdeptree
run: |
uv --no-progress venv --python 3.13
uv --no-progress pip install \
--requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/pipdeptree.txt
--requirement https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/pipdeptree.txt
- name: Install project
run: |
uv --no-progress pip install .
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install project dependencies
run: |
uv --no-progress venv --python 3.13
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install project dependencies
run: |
uv --no-progress venv --python 3.13
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeller-content-based.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Download default rules
run: >
curl -fsSL --output ./.github/labeller-content-based.yaml
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labeller-content-based.yaml
https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/.github/labeller-content-based.yaml
- name: Extend default rules
if: inputs.extra-rules
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeller-file-based.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Download default rules
run: >
curl -fsSL --output ./.github/labeller-file-based.yaml
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labeller-file-based.yaml
https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/.github/labeller-file-based.yaml
- name: Extend default rules
if: inputs.extra-rules
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
with:
skip_delete: true
from: |
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels.yaml
https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/.github/labels.yaml
${{ inputs.extra-label-files }}
${{ ( startsWith(github.event.repository.name, 'awesome-')
&& github.event.repository.name != 'awesome-template' &&
'https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels-awesome.yaml' ) || '' }}
'https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/.github/labels-awesome.yaml' ) || '' }}
12 changes: 6 additions & 6 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
fetch-depth: 0
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Run gha-utils metadata
id: project-metadata
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: >
uvx
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/gha-utils.txt
--
gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT"
Expand All @@ -52,12 +52,12 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install Mypy
run: |
uv --no-progress venv --python 3.13
uv --no-progress pip install \
--requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/mypy.txt
--requirement https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/mypy.txt
- name: Install package
# Use --inexact so that uv doesn't try to remove the mypy package installed above.
run: |
Expand All @@ -76,11 +76,11 @@ jobs:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Run yamllint
run: >
uvx
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/yamllint.txt
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/yamllint.txt
--
yamllint --strict --config-data "{rules: {line-length: {max: 120}}}" --format github .
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ jobs:
git log --decorate=full --oneline
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Run gha-utils metadata
id: project-metadata
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: >
uvx
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt
--with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/gha-utils.txt
--
gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT"
Expand All @@ -84,12 +84,12 @@ jobs:
ref: ${{ matrix.commit }}
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install build dependencies
run: |
uv --no-progress venv --python 3.13
uv --no-progress pip install \
--requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/build.txt
--requirement https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/build.txt
- name: Build package
run: |
uv --no-progress build
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
python-version: "3.13"
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install Nuitka
# XXX We cannot break the long "pip install" line below with a class "\" because it will not be able to run on
# Windows' shell:
Expand All @@ -137,7 +137,7 @@ jobs:
# yamllint disable rule:line-length
run: |
uv --no-progress venv --python 3.13 --python-preference system
uv --no-progress pip install --requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/nuitka.txt
uv --no-progress pip install --requirement https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/nuitka.txt
# yamllint enable
- name: Nuitka + compilers versions
# XXX Nuitka needs the ".cmd" extension on Windows:
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
steps:
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Download build artifacts
uses: actions/[email protected]
id: download
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
python-version: "${{ matrix.python-version }}"
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.1/requirements/uv.txt
- name: Install project
run: |
uv --no-progress venv --python ${{ matrix.python-version }}
Expand Down
5 changes: 1 addition & 4 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# Changelog

## [4.10.1 (unreleased)](https://github.com/kdeldycke/workflows/compare/v4.10.0...main)

> [!IMPORTANT]
> This version is not released yet and is under active development.
## [4.10.1 (2025-01-08)](https://github.com/kdeldycke/workflows/compare/v4.10.0...v4.10.1)

- Re-release with latest `gha-utils`.

Expand Down

0 comments on commit 185965c

Please sign in to comment.