diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c1f1859..011b6f8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10'] # Service containers to run with `container-job` services: diff --git a/pyproject.toml b/pyproject.toml index bfc30ba..869f22c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.black] line-length = 88 -target-version = ['py37', 'py38', 'py39', 'py310'] +target-version = ['py38', 'py39', 'py310'] include = '\.pyi?$' exclude = ''' /( diff --git a/setup.py b/setup.py index e05b33f..6694b6a 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,6 @@ def read(*parts): "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", @@ -48,5 +47,5 @@ def read(*parts): "sanic": ["sanic"], }, zip_safe=False, - python_requires=">=3.7,<4", + python_requires=">=3.8,<4", ) diff --git a/tox.ini b/tox.ini index b28cbcb..fd88e08 100644 --- a/tox.ini +++ b/tox.ini @@ -4,15 +4,14 @@ minversion = 1.8 envlist = py38-lint py38-docs - py{37,38,39,310}-dj32 + py{38,39,310}-dj32 py{38,39,310}-dj{40,41} - py{37,38,39,310}-fl{012,10,11,20,21,22} - py{37,38,39}-s20 - py{37,38,39,310}-s{21,22} + py{38,39,310}-fl{012,10,11,20,21,22} + py{38,39}-s20 + py{38,39,310}-s{21,22} [gh-actions] python = - 3.7: py37 3.8: py38 3.9: py39 3.10: py310