diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0af7a10c4..4712a7ee8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -26,7 +26,7 @@ repos: - id: django-upgrade args: [--target-version, "3.2"] - repo: https://github.com/pycqa/isort - rev: 5.11.4 + rev: 5.12.0 hooks: - id: isort - repo: https://github.com/pre-commit/pygrep-hooks @@ -46,7 +46,7 @@ repos: args: - --trailing-comma=es5 - repo: https://github.com/pre-commit/mirrors-eslint - rev: v8.32.0 + rev: v8.33.0 hooks: - id: eslint files: \.js?$ @@ -60,10 +60,10 @@ repos: language_version: python3 entry: black --target-version=py38 - repo: https://github.com/tox-dev/pyproject-fmt - rev: 0.4.1 + rev: 0.6.0 hooks: - id: pyproject-fmt - repo: https://github.com/abravalheri/validate-pyproject - rev: v0.10.1 + rev: v0.12.1 hooks: - id: validate-pyproject diff --git a/pyproject.toml b/pyproject.toml index ff0937156..bc0a81734 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,13 +13,6 @@ authors = [ { name = "Rob Hudson" }, ] requires-python = ">=3.8" -dependencies = [ - "Django>=3.2.4", - "sqlparse>=0.2", -] -dynamic = [ - "version", -] classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", @@ -40,6 +33,13 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Topic :: Software Development :: Libraries :: Python Modules", ] +dynamic = [ + "version", +] +dependencies = [ + "Django>=3.2.4", + "sqlparse>=0.2", +] [project.urls] Download = "https://pypi.org/project/django-debug-toolbar/" Homepage = "https://github.com/jazzband/django-debug-toolbar"