Skip to content

Commit d6ca966

Browse files
[pre-commit.ci] pre-commit autoupdate (#18)
Co-authored-by: Chris Sewell <chrisj_sewell@hotmail.com>
1 parent a2f4ea9 commit d6ca966

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.pre-commit-config.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repos:
1818
- id: trailing-whitespace
1919

2020
- repo: https://github.com/pycqa/isort
21-
rev: 5.12.0
21+
rev: 5.13.2
2222
hooks:
2323
- id: isort
2424

@@ -29,12 +29,12 @@ repos:
2929
args: [--py37-plus]
3030

3131
- repo: https://github.com/psf/black
32-
rev: 23.11.0
32+
rev: 24.1.1
3333
hooks:
3434
- id: black
3535

36-
- repo: https://github.com/charliermarsh/ruff-pre-commit
37-
rev: v0.1.5
36+
- repo: https://github.com/astral-sh/ruff-pre-commit
37+
rev: v0.2.0
3838
hooks:
3939
- id: ruff
4040

@@ -50,7 +50,7 @@ repos:
5050
# - flake8-markdown==0.2.0
5151

5252
- repo: https://github.com/pre-commit/mirrors-mypy
53-
rev: v1.6.1
53+
rev: v1.8.0
5454
hooks:
5555
- id: mypy
5656
additional_dependencies:

docs/conf.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Sphinx configuration file."""
2+
23
import os
34
import sys
45

docs/example/models.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Example SQLAlchemy ORM models."""
2+
23
from sqlalchemy import CheckConstraint, Column, ForeignKey, UniqueConstraint, orm, types
34

45
Base = orm.declarative_base()

sphinx_sqlalchemy/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Sphinx extension for documenting SQLAlchemy ORMs"""
2+
23
from typing import TYPE_CHECKING
34

45
__version__ = "0.2.0"

tests/test_basic.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Basic tests"""
2+
23
import os.path
34
import sys
45

tests/test_docstrings.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Basic tests"""
2+
23
import os.path
34
import sys
45

0 commit comments

Comments
 (0)