diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 13ff3a9..8752359 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,7 @@ jobs: cache-dependency-path: '**/pyproject.toml' - name: Install dependencies run: | + pip install --upgrade pip pip install -e '.[test]' - name: Run tests run: | diff --git a/pyproject.toml b/pyproject.toml index 5a8eaa1..4eb1bfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,9 @@ version = "2.6.0" description = "This is a package to provide some common utilities for Django projects at Democracy Club." readme = "README.md" authors = [{name = "Sym Roe"}, {name = "Virginia Dooley"}] +dependencies = [ + "django>=3.2,<4.3", +] [project.urls] Homepage = "https://github.com/DemocracyClub/dc_django_utils"