From b39eb63328a22ce17f38429cdce53489e58197aa Mon Sep 17 00:00:00 2001 From: zerolab Date: Mon, 25 Sep 2023 14:52:24 +0100 Subject: [PATCH] Drop Python 3.7 EOL is EOL --- .github/workflows/ci.yml | 2 -- pyproject.toml | 3 +-- tox.ini | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e59b4a7..8d2cb5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,8 +25,6 @@ jobs: # Test with all supported Django versions, for all compatible Python versions. # See https://docs.djangoproject.com/en/4.0/faq/install/#what-python-version-can-i-use-with-django for the official matrix. # Additionally test on Django’s main branch with the most recent Python version. - - python: "3.7" - toxenv: py37-dj32 - python: "3.8" toxenv: py38-dj32,py38-dj41,py38-dj42 - python: "3.9" diff --git a/pyproject.toml b/pyproject.toml index c947e88..b8e5a4b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,6 @@ classifiers = [ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -43,7 +42,7 @@ exclude = [ "Issues" = "https://github.com/torchbox/django-pattern-library/issues" [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" Django = ">=3.2,<5.0" PyYAML = ">=5.1,<7.0" Markdown = "^3.1" diff --git a/tox.ini b/tox.ini index 340d31f..5048474 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{37,38,39,310}-dj32 + py{38,39,310}-dj32 py{38,39,310,311}-dj41 py{38,39,310,311}-dj42 py{310,311}-djmain