Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove explicit poethepoet dependency #88

Merged
merged 1 commit into from
Dec 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 1 addition & 31 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 12 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ license = "MIT License"
python = "^3.10"
click = "^8.1.7"
loguru = "^0.7.2"
peclasses = {version = "^0.4.0", source = "dfint"}
peclasses = { version = "^0.4.0", source = "dfint" }
omegaconf = "^2.3.0"
poethepoet = "^0.29.0"
tqdm = "^4.67.1"

[tool.poetry.group.dev.dependencies]
Expand Down Expand Up @@ -48,28 +47,28 @@ line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"T201", # `print` found
"S101", # Use of assert detected
"ANN101", # Missing type annotation for self in method
"C408", # Unnecessary `dict` call (rewrite as a literal)
"T201", # `print` found
"S101", # Use of assert detected
"ANN101", # Missing type annotation for self in method
"C408", # Unnecessary `dict` call (rewrite as a literal)
"D",
# "D100", # Missing docstring in public module
# "D104", # Missing docstring in public package
# "D105", # Missing docstring in magic method
# "D200", # One-line docstring should fit on one line
# "D212", # Multi-line docstring summary should start at the first line
"TD", # Ignore todo warnings
"FIX002", # Ignore todo warnings
"COM812", # Ignore missing trailing comma warning, which conflicts with formatter
"TD", # Ignore todo warnings
"FIX002", # Ignore todo warnings
"COM812", # Ignore missing trailing comma warning, which conflicts with formatter
]

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