diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 87f08c7..6cd64e0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,13 +9,13 @@ ci: repos: - repo: https://github.com/asottile/blacken-docs - rev: "1.18.0" + rev: "1.20.0" hooks: - id: blacken-docs additional_dependencies: [black==23.7.0] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: "v4.6.0" + rev: "v6.0.0" hooks: - id: check-added-large-files - id: check-case-conflict @@ -38,13 +38,13 @@ repos: - id: rst-inline-touching-normal - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.6.2" + rev: "v0.15.20" hooks: - id: ruff args: ["--fix", "--show-fixes"] - repo: https://github.com/codespell-project/codespell - rev: "v2.3.0" + rev: "v2.4.2" hooks: - id: codespell diff --git a/src/supercapacitors/__init__.py b/src/supercapacitors/__init__.py index f446460..2554ca5 100644 --- a/src/supercapacitors/__init__.py +++ b/src/supercapacitors/__init__.py @@ -10,9 +10,9 @@ from supercapacitors.entry_point import Model, models, parameter_sets __all__ = [ - "__version__", - "pybamm", - "parameter_sets", "Model", + "__version__", "models", + "parameter_sets", + "pybamm", ]