diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3c6b7b4..ff91090 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -27,13 +27,13 @@ repos: id: ruff - id: ruff-format repo: https://github.com/astral-sh/ruff-pre-commit - rev: 321478e58f4938179c6b86e4ddfa923d1547a49b # frozen: v0.16.6 + rev: e8f7d69b957a30acb2c875078d5fd012de24b64c # frozen: v0.16.7 - hooks: - files: ^(.*\.toml)$ id: toml-sort-fix repo: https://github.com/pappasam/toml-sort - rev: 2970ae9bb7124fe5117a27e10c10d2da051ce05a # frozen: v0.24.4 + rev: 6bcff12c5d156baa6897ca2a85f6d534af296e7c # frozen: v0.25.0 - hooks: - id: check-added-large-files diff --git a/pyproject.toml b/pyproject.toml index 487df26..296ac13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,10 +5,10 @@ requires = ["hatchling"] [dependency-groups] dev = [ "tox-uv>=1.35.2", - {include-group = "docs"}, - {include-group = "lint"}, - {include-group = "test"}, - {include-group = "type"} + { include-group = "docs" }, + { include-group = "lint" }, + { include-group = "test" }, + { include-group = "type" } ] docs = [ "furo>=2024.8.6", @@ -24,11 +24,11 @@ test = [ ] type = [ "pyright>=1.1.410", - {include-group = "test"} + { include-group = "test" } ] [project] -authors = [{email = "lilspazjoekp@gmail.com", name = "Joel Payne"}] +authors = [{ email = "lilspazjoekp@gmail.com", name = "Joel Payne" }] classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", @@ -55,10 +55,10 @@ dependencies = [ description = "A Python codemod that sorts and organizes code in your files." dynamic = ["version"] keywords = ["codemod", "codesorter", "libcst", "sort"] -license = {file = "LICENSE.txt"} +license = { file = "LICENSE.txt" } maintainers = [ - {email = "lilspazjoekp@gmail.com", name = "Joel Payne"}, - {email = "bbzbryce@gmail.com", name = "Bryce Boe"} + { email = "lilspazjoekp@gmail.com", name = "Joel Payne" }, + { email = "bbzbryce@gmail.com", name = "Bryce Boe" } ] name = "codesorter" readme = "README.rst"