diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 803b729..3c5d2b6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,13 +12,8 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] django-version: ['3.2', '4.1', '4.2'] - exclude: - - python-version: '3.7' - django-version: '4.1' - - python-version: '3.7' - django-version: '4.2' steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG b/CHANGELOG index cde70a2..2aa4413 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -9,6 +9,7 @@ Unreleased * Fix URL message for internal server errorrs (Timo Ludwig, #182) * Add support for Django 4.2 * Remove support for Django 4.0 +* Remove support for Python 3.7 2.2.1 (2023-04-03) diff --git a/README.rst b/README.rst index 346ce37..4fe3e0c 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ automatically when objects are saved. This is handled by signals. Minimal requirements -------------------- -django-linkcheck requires Python 3.7 and Django 3.2. +django-linkcheck requires Python 3.8 and Django 3.2. Basic usage ----------- diff --git a/setup.py b/setup.py index 49c3909..b45a84c 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,6 @@ def read(fname): 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10',