From cad7ce09c82db4558024cf5d2ac82766b0c5ef1e Mon Sep 17 00:00:00 2001 From: palewire Date: Tue, 28 Nov 2023 05:51:37 -0500 Subject: [PATCH] try pip install --- .github/workflows/continuous-deployment.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-deployment.yaml b/.github/workflows/continuous-deployment.yaml index 1c2b8d0..1ba3e56 100644 --- a/.github/workflows/continuous-deployment.yaml +++ b/.github/workflows/continuous-deployment.yaml @@ -56,17 +56,14 @@ jobs: sudo apt update sudo apt install libpq-dev postgresql-client gdal-bin libgdal-dev - - name: Install pipenv - run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python - - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - cache: 'pipenv' + cache: 'pip' - id: pipenv-install name: Install Python dependencies - run: pipenv install --dev --python `which python` + run: pip install tomli setuptools-scm requests pytz psycopg2 django>=4.0.* - name: Test run: pipenv run python setup.py test