diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 286039be..8143593e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,10 +18,10 @@ repos: hooks: - id: isort - repo: https://github.com/asottile/pyupgrade - rev: v3.16.0 + rev: v3.17.0 hooks: - id: pyupgrade - args: [--py38-plus] + args: [--py39-plus] - repo: https://github.com/adamchainz/django-upgrade rev: 1.20.0 hooks: diff --git a/tox.ini b/tox.ini index dc97ca34..3e2f5c85 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ envlist = {py38,py39,py310,py311}-django42 {py310,py311,py312}-django{50,main} py38-docs - py38-lint + py39-lint [testenv] setenv = @@ -41,7 +41,7 @@ changedir = docs/source deps = -rdocs/requirements.txt commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html -[testenv:py38-lint] +[testenv:py39-lint] deps = pre-commit commands = pre-commit run --all-files