Skip to content

Commit

Permalink
➖ remove a number of dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
user committed Nov 27, 2024
1 parent b7fac14 commit b9c7e89
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
14 changes: 10 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,8 @@ Brotli = {version = "*", markers = "platform_python_implementation == 'CPython'"
brotlicffi = {version = "*", markers = "platform_python_implementation != 'CPython'", optional = true}

[tool.poetry.dev-dependencies]
pyflakes = ">=2"
pycodestyle = ">=2"
flake8 = ">=4"
ruff = ">=0.8.0"
pytest = ">=6"
black = ">=21.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand All @@ -82,6 +79,15 @@ filterwarnings = [

[tool.ruff]
line-length = 181
# Enable the pycodestyle (`E`) and Pyflakes (`F`) rules by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E", "F", "W605"]
ignore = ["E501"] # ignore line too long

# Allow autofix for all enabled rules (when `--fix`) is provided.
# fixable = ["ALL"]
# unfixable = []

[tool.poetry.extras]
hook-proxy = [
Expand Down
6 changes: 1 addition & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
pyflakes
pycodestyle
mccabe
flake8
ruff
pytest
black

0 comments on commit b9c7e89

Please sign in to comment.