From e3ee3f9cc6647129bd73644e3e475f92c9d040a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Wed, 3 Apr 2024 15:12:46 -0700 Subject: [PATCH] github(lint): use requirements-dev.txt --- .github/workflows/lint.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index da097d237..6dba57d28 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -29,11 +29,11 @@ jobs: - name: Setup virtual environment run: | python -m venv .venv - - name: Install basic Python dependencies + - name: Install development Python dependencies run: | source .venv/bin/activate python -m pip install --upgrade pip - pip install -r requirements.txt + pip install -r requirements-dev.txt - name: autopep8 id: autopep8 run: |