From e28c6d76579e3e7dfa84a0e9015a97f5ef69b066 Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Wed, 21 Jan 2026 10:14:50 +0000 Subject: [PATCH] Removed 'docs' and 'testing' from pip install options for pre-commit job --- .github/workflows/example_package_project-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/example_package_project-ci.yaml b/.github/workflows/example_package_project-ci.yaml index e57322b..63f178a 100644 --- a/.github/workflows/example_package_project-ci.yaml +++ b/.github/workflows/example_package_project-ci.yaml @@ -65,7 +65,7 @@ jobs: - name: Install python dependencies run: | pip install --upgrade pip - pip install -e .[pre-commit,docs,testing] + pip install -e .[pre-commit] - name: Run pre-commit run: | pre-commit install