Skip to content

Commit d911027

Browse files
authored
build(deps): Add flake8-bugbear (#807)
2 parents 66b9e3d + cdf3636 commit d911027

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

CHANGES

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
1919

2020
- _Insert changes/features/fixes for next release here_
2121

22+
### Development
23+
24+
- Add [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) (#807)
25+
2226
## tmuxp 1.13.1 (2022-08-21)
2327

2428
### Bug fixes

poetry.lock

+20-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ isort = "*"
8585

8686
### Lint ###
8787
flake8 = "*"
88+
flake8-bugbear = "^22.8.23"
8889
mypy = "*"
8990
types-colorama = "^0.4.15"
9091
types-docutils = "^0.19.0"
@@ -109,7 +110,7 @@ docs = [
109110
test = ["pytest", "pytest-rerunfailures", "pytest-mock", "pytest-watcher"]
110111
coverage = ["codecov", "coverage", "pytest-cov"]
111112
format = ["black", "isort"]
112-
lint = ["flake8", "mypy", "types-colorama", "types-docutils"]
113+
lint = ["flake8", "flake8-bugbear", "mypy", "types-colorama", "types-docutils"]
113114

114115
[build-system]
115116
requires = ["poetry_core>=1.0.0"]
@@ -123,6 +124,6 @@ module = [
123124
"IPython.*",
124125
"ptpython.*",
125126
"prompt_toolkit.*",
126-
"bpython"
127+
"bpython",
127128
]
128129
ignore_missing_imports = true

0 commit comments

Comments
 (0)