Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#18)
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Sewell <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and chrisjsewell authored Feb 26, 2024
1 parent a2f4ea9 commit d6ca966
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort

Expand All @@ -29,12 +29,12 @@ repos:
args: [--py37-plus]

- repo: https://github.com/psf/black
rev: 23.11.0
rev: 24.1.1
hooks:
- id: black

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.1.5
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.0
hooks:
- id: ruff

Expand All @@ -50,7 +50,7 @@ repos:
# - flake8-markdown==0.2.0

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.6.1
rev: v1.8.0
hooks:
- id: mypy
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sphinx configuration file."""

import os
import sys

Expand Down
1 change: 1 addition & 0 deletions docs/example/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Example SQLAlchemy ORM models."""

from sqlalchemy import CheckConstraint, Column, ForeignKey, UniqueConstraint, orm, types

Base = orm.declarative_base()
Expand Down
1 change: 1 addition & 0 deletions sphinx_sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sphinx extension for documenting SQLAlchemy ORMs"""

from typing import TYPE_CHECKING

__version__ = "0.2.0"
Expand Down
1 change: 1 addition & 0 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Basic tests"""

import os.path
import sys

Expand Down
1 change: 1 addition & 0 deletions tests/test_docstrings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Basic tests"""

import os.path
import sys

Expand Down

0 comments on commit d6ca966

Please sign in to comment.