Skip to content

Commit

Permalink
update tool config
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Jan 13, 2022
1 parent ee5fdbf commit 928ee5b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
updates:
- package-ecosystem: "pip"
directory: "/requirements"
target-branch: "3.0.x"
target-branch: "8.0.x"
versioning-strategy: "lockfile-only"
schedule:
interval: "monthly"
Expand Down
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ci:
autoupdate_branch: "8.0.x"
autoupdate_schedule: monthly
repos:
- repo: https://github.com/asottile/pyupgrade
Expand Down
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,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.

Expand All @@ -42,22 +42,22 @@ filterwarnings =
error

[coverage:run]
branch = true
branch = True
source =
click
tests

[coverage:paths]
source =
click
src
*/site-packages

[flake8]
# B = bugbear
# E = pycodestyle errors
# F = flake8 pyflakes
# W = pycodestyle warnings
# B9 = bugbear opinions,
# B9 = bugbear opinions
# ISC = implicit str concat
select = B, E, F, W, B9, ISC
ignore =
Expand All @@ -72,7 +72,7 @@ ignore =
# up to 88 allowed by bugbear B950
max-line-length = 80
per-file-ignores =
# __init__ module exports names
# __init__ exports names
src/click/__init__.py: F401

[mypy]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py3{11,10,9,8,7,6},pypy37
py3{11,10,9,8,7,6},pypy3{8,7}
style
typing
docs
Expand Down

0 comments on commit 928ee5b

Please sign in to comment.