From 5325d63a6665a4f0d46421b91270dc782ae957ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 16:05:39 +0000 Subject: [PATCH 1/2] build(deps): bump the actions group across 1 directory with 4 updates Bumps the actions group with 4 updates in the / directory: [codecov/codecov-action](https://github.com/codecov/codecov-action), [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) Updates `astral-sh/setup-uv` from 8.1.0 to 8.3.2 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/08807647e7069bb48b6ef5acd8ec9567f424441b...11f9893b081a58869d3b5fccaea48c9e9e46f990) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 8.3.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-docs.yml | 2 +- .github/workflows/ci.yml | 8 ++++---- .github/workflows/docs-preview.yml | 6 +++--- .github/workflows/docs.yml | 8 ++++---- .github/workflows/lint.yml | 6 +++--- .github/workflows/publish.yml | 4 ++-- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml index f0a5336f7..e30b3cb77 100644 --- a/.github/workflows/ci-docs.yml +++ b/.github/workflows/ci-docs.yml @@ -51,7 +51,7 @@ jobs: echo '' >> coverage.xml if: matrix.python-version == 3.12 - name: Upload mock coverage to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ea4bd8ea..3b7b30cad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,14 +26,14 @@ jobs: - '3.14' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} - name: Install uv - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 + uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2 - name: Install Python dependencies run: | @@ -44,7 +44,7 @@ jobs: run: | uv run tox - - uses: codecov/codecov-action@v6 + - uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/.github/workflows/docs-preview.yml b/.github/workflows/docs-preview.yml index 756980b9c..ca41a02c4 100644 --- a/.github/workflows/docs-preview.yml +++ b/.github/workflows/docs-preview.yml @@ -19,18 +19,18 @@ jobs: build-docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 if: github.event.action != 'closed' # We don't need the build if we know the preview will be removed with: python-version-file: "pyproject.toml" - name: Install uv if: github.event.action != 'closed' # We don't need the build if we know the preview will be removed - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 + uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2 - name: Install Python dependencies if: github.event.action != 'closed' # We don't need the build if we know the preview will be removed diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 54f4a7156..4a1efc102 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,18 +14,18 @@ jobs: build-docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # require all of history to see all tagged versions' docs fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version-file: "pyproject.toml" - name: Install uv - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 + uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2 - name: Install Python dependencies run: | @@ -34,7 +34,7 @@ jobs: - name: Checkout gh-pages # As we already did a deploy of gh-pages above, it is guaranteed to be there # so check it out so we can selectively build docs below - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: gh-pages path: docs/_build diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1583a8213..da773a26f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,13 +8,13 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 - - uses: actions/setup-python@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-python@v7 with: python-version-file: "pyproject.toml" - name: Install uv - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 + uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2 - name: Install Python dependencies run: | uv sync --locked --extra dev diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f11ebf255..7deab0ca1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,11 +17,11 @@ jobs: # Needed for GitHub releases contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 with: python-version: "3.x" - name: Install build From d90e312d3d84da7a30b9d0aafeaf63868ecfe019 Mon Sep 17 00:00:00 2001 From: Fede Raimondo Date: Tue, 21 Jul 2026 13:14:42 +0300 Subject: [PATCH 2/2] Fix lint --- julearn/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/julearn/config.py b/julearn/config.py index 54b99905d..67118d9b2 100644 --- a/julearn/config.py +++ b/julearn/config.py @@ -57,7 +57,7 @@ def get_config(key: str) -> Any: def _joblib_htcondor_context_func(current_func=None) -> None: - """Create a function to seet the config variables. + """Create a function to set the config variables. Parameters ----------