diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d8ca1c..1f3977f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] django-version: ["4.2", "5.0"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index bb3cc10..dca7007 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "0.3.2" authors = [{ name = "Stuart Maxwell", email = "stuart@amanzi.nz" }] description = "A blog application for Django sites, inspired by classic WordPress." readme = "README.md" -requires-python = ">=3.11" +requires-python = ">=3.10" dependencies = ["django", "markdown", "pygments"] license = { file = "LICENSE" } classifiers = [ @@ -23,6 +23,7 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Internet :: WWW/HTTP",