From 0b5555d333a4bf52449b770607f82f7820fa8252 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 17 May 2023 16:15:02 -0700 Subject: [PATCH] Updated workflow for pyproject installation --- .github/workflows/python-package.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index cf33297..c005312 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -28,7 +28,8 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + python3 -m ppi install -e . + # if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names