From: David Lord Date: Thu, 13 Jan 2022 22:45:55 +0000 (-0800) Subject: update tool config X-Git-Tag: 3.0.x~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24d3215f06c6d87a7b6b327c774703bc0acbedcd;p=thirdparty%2Fjinja.git update tool config --- diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 85c0e28f..b4a7c7d5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,4 +1,5 @@ ci: + autoupdate_branch: "3.0.x" autoupdate_schedule: monthly repos: - repo: https://github.com/asottile/pyupgrade diff --git a/setup.cfg b/setup.cfg index 9dd6c512..b4031360 100644 --- a/setup.cfg +++ b/setup.cfg @@ -32,7 +32,7 @@ classifiers = [options] packages = find: package_dir = = src -include_package_data = true +include_package_data = True python_requires = >= 3.6 # Dependencies are in setup.py for GitHub's dependency graph. @@ -67,7 +67,7 @@ source = # F = flake8 pyflakes # W = pycodestyle warnings # B9 = bugbear opinions -# ISC = implicit-str-concat +# ISC = implicit str concat select = B, E, F, W, B9, ISC ignore = # slice notation whitespace, invalid @@ -81,7 +81,7 @@ ignore = # up to 88 allowed by bugbear B950 max-line-length = 80 per-file-ignores = - # __init__ module exports names + # __init__ exports names src/jinja2/__init__.py: F401 [mypy] diff --git a/tox.ini b/tox.ini index f14c957d..02753857 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{311,310,39,38,37,36,py37} + py3{11,10,9,8,7,6},pypy3{8,7} style typing docs