diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ec87c0..4e01c1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,12 +46,13 @@ jobs: strategy: matrix: python-version: - - "3.9" - "3.10" + - "3.11" - "3.12" - "3.13" + - "3.14" django-version: - - "4.2" # LTS + - "5.2" # LTS runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 @@ -71,11 +72,11 @@ jobs: strategy: matrix: python-version: - - "3.12" + - "3.10" django-version: # LTS gets tested on all OS + - "4.2" - "5.1" - - "5.2" runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 diff --git a/pyproject.toml b/pyproject.toml index 5786965..7d23c42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,17 +23,17 @@ classifiers = [ "Topic :: Software Development", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Framework :: Django", "Framework :: Django :: 4.2", "Framework :: Django :: 5.1", "Framework :: Django :: 5.2", ] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = ["django>=4.2.0", "pillow>=11.3.0"] [project.optional-dependencies]