From 76ae34582e5dc48b9900a4b498c1ba4c3327ad8e Mon Sep 17 00:00:00 2001 From: Steve Lacey Date: Tue, 31 Jan 2023 18:31:06 +0800 Subject: [PATCH] Switch out pipenv install django for pip install --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 392c732..185f394 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: python-version: ${{ matrix.python }} - run: pip install pipenv - run: pipenv install --dev --python ${{ matrix.python }} - - run: pipenv install django~=${{ matrix.django }} --skip-lock + - run: pipenv run pip install django~=${{ matrix.django }}.0 - run: pipenv run pytest --cov lint: