Skip to content

Commit

Permalink
Merge branch '8.0.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Jan 13, 2022
2 parents c63c70d + 928ee5b commit 49164fa
Show file tree
Hide file tree
Showing 3 changed files with 7 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
11 changes: 5 additions & 6 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.7
# 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 @@ -69,11 +69,10 @@ ignore =
E722
# bin op line break, invalid
W503

# 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

0 comments on commit 49164fa

Please sign in to comment.