diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a4c3f2..3f6f3a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,6 @@ jobs: fail-fast: false matrix: python-version: - - "3.8" - "3.9" - "3.10" - "3.11" @@ -22,9 +21,7 @@ jobs: - "dj42" # LTS - "dj50" exclude: - # Python 3.8/3.9 is incompatible with Django 5.0+ - - python-version: "3.8" - tox-env: "dj50" + # Python 3.9 is incompatible with Django 5.0+ - python-version: "3.9" tox-env: "dj50" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e6081e0..f14e733 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,4 +3,4 @@ repos: rev: v3.21.0 hooks: - id: pyupgrade - args: ["--py38-plus"] + args: ["--py39-plus"] diff --git a/README.rst b/README.rst index 16121e9..b546bb4 100644 --- a/README.rst +++ b/README.rst @@ -26,7 +26,7 @@ Automated code metrics: * Free software: MIT license * Documentation for the Click command line library: https://click.palletsprojects.com/en/stable/ -* Compatible with Django 4.2 and 5.0 running on Python 3.8, 3.9, 3.10, 3.11, and 3.12 (note: 3.10+ required for Django 5.0). +* Compatible with Django 4.2 and 5.0 running on Python 3.9, 3.10, 3.11, and 3.12 (note: 3.10+ required for Django 5.0). Installation diff --git a/setup.py b/setup.py index 3fbc457..ce077a4 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,6 @@ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",