From e4c7573905ae9d6131ef2fb463d923beab592d00 Mon Sep 17 00:00:00 2001 From: palewire Date: Tue, 23 Aug 2022 05:58:36 -0700 Subject: [PATCH] Simplify python installs in actions --- .github/workflows/continuous-deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-deployment.yaml b/.github/workflows/continuous-deployment.yaml index bf206dc..68ef06f 100644 --- a/.github/workflows/continuous-deployment.yaml +++ b/.github/workflows/continuous-deployment.yaml @@ -21,7 +21,7 @@ jobs: - id: pipenv-install name: Install Python dependencies - run: pipenv install --dev --python `which python` + run: pipenv install --python `which python` --skip-lock flake8 flake8-docstrings flake8-bugbear - id: run name: Run @@ -47,7 +47,7 @@ jobs: - id: pipenv-install name: Install Python dependencies - run: pipenv install --python `which python` --dev --skip-lock + run: pipenv install --python `which python` --skip-lock tldextract scikit-learn dill pandas pytest shell: bash - id: run @@ -72,7 +72,7 @@ jobs: - id: pipenv-install name: Install Python dependencies - run: pipenv install --dev --python `which python` + run: pipenv install --python `which python` --skip-lock twine shell: bash - id: build