diff --git a/poetry.lock b/poetry.lock index b5ececa..cfcf502 100644 --- a/poetry.lock +++ b/poetry.lock @@ -297,17 +297,6 @@ files = [ {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, ] -[[package]] -name = "pastel" -version = "0.2.1" -description = "Bring colors to your terminal." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pastel-0.2.1-py2.py3-none-any.whl", hash = "sha256:4349225fcdf6c2bb34d483e523475de5bb04a5c10ef711263452cb37d7dd4364"}, - {file = "pastel-0.2.1.tar.gz", hash = "sha256:e6581ac04e973cac858828c6202c1e1e81fee1dc7de7683f3e1ffe0bfd8a573d"}, -] - [[package]] name = "peclasses" version = "0.4.0" @@ -338,25 +327,6 @@ files = [ dev = ["pre-commit", "tox"] testing = ["pytest", "pytest-benchmark"] -[[package]] -name = "poethepoet" -version = "0.29.0" -description = "A task runner that works well with poetry." -optional = false -python-versions = ">=3.8" -files = [ - {file = "poethepoet-0.29.0-py3-none-any.whl", hash = "sha256:f8dfe55006dcfb5cf31bcb1904e1262e1c642a4502fee3688cbf1bddfe5c7601"}, - {file = "poethepoet-0.29.0.tar.gz", hash = "sha256:676842302f2304a86b31ac56398dd672fae8471128d2086896393384dbafc095"}, -] - -[package.dependencies] -pastel = ">=0.2.1,<0.3.0" -pyyaml = ">=6.0.2,<7.0.0" -tomli = {version = ">=1.2.2", markers = "python_version < \"3.11\""} - -[package.extras] -poetry-plugin = ["poetry (>=1.0,<2.0)"] - [[package]] name = "pytest" version = "8.3.4" @@ -557,4 +527,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "ca11c6ebeae4961e311444d89e945c00fbe9f6fe52437611cc9f58b5c7716e42" +content-hash = "7d28675997291d6048a2a9e61a430ed7ad98be9857c852ded5b6576456791c2d" diff --git a/pyproject.toml b/pyproject.toml index a35a9ea..758a2f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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] @@ -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 ]