From 2a1fcd625ce306bd668af887658271e7f01731e0 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 10:44:41 +0200 Subject: [PATCH] chore(deps): pre-commit.ci autoupdate (#30) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(deps): pre-commit.ci autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.2 → v0.6.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.6.2...v0.6.3) - [github.com/pre-commit/mirrors-mypy: v1.11.1 → v1.11.2](https://github.com/pre-commit/mirrors-mypy/compare/v1.11.1...v1.11.2) - [github.com/PyCQA/pylint: v3.2.6 → v3.2.7](https://github.com/PyCQA/pylint/compare/v3.2.6...v3.2.7) - [github.com/crate-ci/typos: v1.23.7 → typos-dict-v0.11.27](https://github.com/crate-ci/typos/compare/v1.23.7...typos-dict-v0.11.27) * fix ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Markus Hofauer --- .github/workflows/ci.yml | 7 ++++--- .pre-commit-config.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4bdf88f..a045fc1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,10 +29,9 @@ jobs: make coverage cd .. - uses: actions/upload-artifact@v4 - if: ${{ matrix.compiler }} == 'clang' with: path: build/ccov/all-merged - name: artifacts-cpp + name: artifacts-cpp-${{ matrix.compiler }} python: runs-on: ubuntu-latest @@ -43,6 +42,8 @@ jobs: with: python-version: '3.12' - name: Install dependencies + env: + UV_SYSTEM_PYTHON: 1 run: | curl -LsSf https://astral.sh/uv/install.sh | sh uv pip install -r requirements.txt @@ -103,7 +104,7 @@ jobs: mv artifacts-slides/* public mv artifacts-docs/* public mkdir -p public/coverage - mv artifacts-cpp public/coverage/cpp + mv artifacts-cpp-clang public/coverage/cpp mv artifacts-python/ public/coverage/python mkdir -p public/export make package diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 763277b..2f340e3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -114,7 +114,7 @@ repos: additional_dependencies: [cmakelang] exclude: cmake/.* - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.2 + rev: v0.6.3 hooks: - id: ruff - id: ruff-format @@ -127,12 +127,12 @@ repos: - flake8-bugbear # Ruff does not implement all of bugbear - flake8-requirements # Not yet implemented https://github.com/astral-sh/ruff/issues/4100 - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.11.1 + rev: v1.11.2 hooks: - id: mypy args: [--python-version, '3.10'] - repo: https://github.com/PyCQA/pylint - rev: v3.2.6 + rev: v3.2.7 hooks: - id: pylint - repo: https://github.com/asottile/pyupgrade @@ -153,6 +153,6 @@ repos: hooks: - id: check-github-workflows - repo: https://github.com/crate-ci/typos - rev: v1.23.7 + rev: typos-dict-v0.11.27 hooks: - id: typos