From 94fda3c7154facc60705f5d375da7df9d6e3efa8 Mon Sep 17 00:00:00 2001 From: Dylan McReynolds Date: Wed, 14 Feb 2024 10:32:28 -0800 Subject: [PATCH] fix build --- .github/workflows/python_app.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/python_app.yml b/.github/workflows/python_app.yml index 41ad795..4d15a92 100644 --- a/.github/workflows/python_app.yml +++ b/.github/workflows/python_app.yml @@ -22,8 +22,7 @@ jobs: python -m pip install --upgrade pip pip install flake8 pytest pip install . - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi + pip install .[dev] - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names