Skip to content

Commit 6643ce0

Browse files
committed
Remove explicit poethepoet dependency
1 parent caf46ed commit 6643ce0

File tree

2 files changed

+13
-44
lines changed

2 files changed

+13
-44
lines changed

poetry.lock

Lines changed: 1 addition & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ license = "MIT License"
99
python = "^3.10"
1010
click = "^8.1.7"
1111
loguru = "^0.7.2"
12-
peclasses = {version = "^0.4.0", source = "dfint"}
12+
peclasses = { version = "^0.4.0", source = "dfint" }
1313
omegaconf = "^2.3.0"
14-
poethepoet = "^0.29.0"
1514
tqdm = "^4.67.1"
1615

1716
[tool.poetry.group.dev.dependencies]
@@ -48,28 +47,28 @@ line-length = 120
4847
[tool.ruff.lint]
4948
select = ["ALL"]
5049
ignore = [
51-
"T201", # `print` found
52-
"S101", # Use of assert detected
53-
"ANN101", # Missing type annotation for self in method
54-
"C408", # Unnecessary `dict` call (rewrite as a literal)
50+
"T201", # `print` found
51+
"S101", # Use of assert detected
52+
"ANN101", # Missing type annotation for self in method
53+
"C408", # Unnecessary `dict` call (rewrite as a literal)
5554
"D",
5655
# "D100", # Missing docstring in public module
5756
# "D104", # Missing docstring in public package
5857
# "D105", # Missing docstring in magic method
5958
# "D200", # One-line docstring should fit on one line
6059
# "D212", # Multi-line docstring summary should start at the first line
61-
"TD", # Ignore todo warnings
62-
"FIX002", # Ignore todo warnings
63-
"COM812", # Ignore missing trailing comma warning, which conflicts with formatter
60+
"TD", # Ignore todo warnings
61+
"FIX002", # Ignore todo warnings
62+
"COM812", # Ignore missing trailing comma warning, which conflicts with formatter
6463
]
6564

6665
[tool.ruff.lint.per-file-ignores]
6766
"tests/*" = [
68-
"S101", # Don't warn about using of asserts in tests
67+
"S101", # Don't warn about using of asserts in tests
6968
"ANN201", # Ignore "Missing return type annotation for public function", tests don't return anything
70-
"D", # Don't warn about missing documentation in tests
69+
"D", # Don't warn about missing documentation in tests
7170
"RUF001", # String contains ambiguous {}. Did you mean {}?
72-
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes
73-
"PLR2004", # Magic value used in comparison
71+
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes
72+
"PLR2004", # Magic value used in comparison
7473
"FBT001", # Ignore boolean positional argument
7574
]

0 commit comments

Comments
 (0)