Skip to content

Commit

Permalink
DEV: Add flake8-print (#1203)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinThoma authored Aug 4, 2022
1 parent 43197dc commit 223da14
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
ignore = E203,E501,E741,W503,W604,N817,N814,VNE001,VNE002,VNE003,N802,SIM105,P101
exclude = build,sample-files
per-file-ignores =
tests/*: ASS001,PT011,B011
tests/*: ASS001,PT011,B011,T001
make_changelog.py:T001
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:
- id: blacken-docs
additional_dependencies: [black==22.1.0]
- repo: https://github.com/asottile/pyupgrade
rev: v2.37.2
rev: v2.37.3
hooks:
- id: pyupgrade
args: [--py36-plus]
1 change: 1 addition & 0 deletions requirements/ci.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ coverage
flake8
flake8_implicit_str_concat
flake8-bugbear
flake8-print
mypy
pillow
pytest
Expand Down
19 changes: 13 additions & 6 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,25 @@ attrs==20.3.0
# pytest
coverage==6.2
# via -r requirements/ci.in
flake8==4.0.1
flake8==5.0.4
# via
# -r requirements/ci.in
# flake8-bugbear
# flake8-print
flake8-bugbear==22.7.1
# via -r requirements/ci.in
flake8-implicit-str-concat==0.2.0
# via -r requirements/ci.in
flake8-print==4.0.1
# via -r requirements/ci.in
importlib-metadata==4.2.0
# via
# flake8
# pluggy
# pytest
iniconfig==1.1.1
# via pytest
mccabe==0.6.1
mccabe==0.7.0
# via flake8
more-itertools==8.13.0
# via flake8-implicit-str-concat
Expand All @@ -44,11 +47,13 @@ py==1.11.0
# via pytest
py-cpuinfo==8.0.0
# via pytest-benchmark
pycodestyle==2.8.0
# via flake8
pycodestyle==2.9.1
# via
# flake8
# flake8-print
pycryptodome==3.15.0
# via -r requirements/ci.in
pyflakes==2.4.0
pyflakes==2.5.0
# via flake8
pyparsing==3.0.9
# via packaging
Expand All @@ -58,6 +63,8 @@ pytest==7.0.1
# pytest-benchmark
pytest-benchmark==3.4.1
# via -r requirements/ci.in
six==1.16.0
# via flake8-print
tomli==1.2.3
# via
# mypy
Expand All @@ -66,7 +73,7 @@ typed-ast==1.5.4
# via mypy
typeguard==2.13.3
# via -r requirements/ci.in
types-pillow==9.2.0
types-pillow==9.2.1
# via -r requirements/ci.in
typing-extensions==4.1.1
# via
Expand Down

0 comments on commit 223da14

Please sign in to comment.