diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c4ee8a6..2ed8a86 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Changelog ========= +Version 2.7.0 +------------- + +NOTICE +~~~~~~ + +This version drops support for Python 3.7 - latest Pylint no longer supports 3.7, and CI tasks were taking hours under 3.7 + + Version 2.6.0 (14 May 2023) --------------------------- diff --git a/pyproject.toml b/pyproject.toml index f11a310..1f684ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pylint-django" -version = "2.5.5" +version = "2.7.0" readme = "README.rst" description = "A Pylint plugin to help Pylint understand the Django web framework" repository = "https://github.com/PyCQA/pylint-django" diff --git a/tox.ini b/tox.ini index b2c1ef3..ca10ad0 100644 --- a/tox.ini +++ b/tox.ini @@ -7,9 +7,9 @@ envlist = flake8 pylint readme - py{37,38,39}-django{22,30,31,32} + py{38,39}-django{22,30,31,32} py{38,39,310,311,312}-django{40,41,42} - py{310,311,312}-django{50} + py{310,311,312}-django{50,-main} requires = pip >=21.0.1 @@ -48,6 +48,6 @@ setenv = allowlist_externals = django_not_installed: bash readme: bash - py{37,38,39,310,311,312}-django{22,30,31,32,40,41,42,50}: bash + django{22,30,31,32,40,41,42,50,-main}: bash clean: find clean: rm