From 6c87ec1e6dbd3f666617b967324af204300e70a8 Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Wed, 13 May 2026 11:16:15 +0200 Subject: [PATCH] CI: remove pre-commit update (now enforced by dependabot); cleanup pylint install step. Closes #411 Removed pre-commit clean and autoupdate commands. Updated pylint installation to remove version restriction. --- .github/workflows/tests.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bd10118b..dda802b4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,8 +28,6 @@ jobs: python-version: "3.10" - run: | pip install pre-commit - pre-commit clean - pre-commit autoupdate pre-commit run --all-files pylint: @@ -48,8 +46,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - # TODO #411 https://github.com/pylint-dev/pylint/issues/9099 - pip install "pylint<3.0.0" nbqa + pip install pylint nbqa pip install -r tests/devops_tests/requirements.txt pip install -e .[tests] -e ./examples[tests] -e. ./MPI[tests] - run: |