Skip to content

Commit 544c98c

Browse files
authored
Merge pull request #42 from team23/dependabot/pip/ruff-gte-0.5.0-and-lt-0.9.0
chore(deps-dev): Update ruff requirement from >=0.5.0,<0.8.0 to >=0.5.0,<0.9.0
2 parents 65be3d2 + 9d2f1e5 commit 544c98c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
- id: check-docstring-first
99
- id: debug-statements
1010
- repo: https://github.com/astral-sh/ruff-pre-commit
11-
rev: v0.7.2
11+
rev: v0.8.0
1212
hooks:
1313
- id: ruff
1414
args: [--fix, --exit-non-zero-on-fix]

pydantic_changedetect/changedetect.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Something(ChangeDetectionMixin, pydantic.BaseModel):
7373
model_self_changed_fields: set[str] = PrivateAttr(...)
7474
model_changed_markers: set[str] = PrivateAttr(...)
7575

76-
__slots__ = ("model_original", "model_self_changed_fields", "model_changed_markers")
76+
__slots__ = ("model_changed_markers", "model_original", "model_self_changed_fields")
7777

7878
def __init__(self, **kwargs: Any) -> None:
7979
super().__init__(**kwargs)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pydantic = ">=1.9.0,<3.0.0"
1515
pytest = ">=7.1.2,<9.0.0"
1616
pytest-cov = ">=3,<7"
1717
tox = ">=3.26,<5.0"
18-
ruff = ">=0.5.0,<0.8.0"
18+
ruff = ">=0.5.0,<0.9.0"
1919
pyright = ">=1.1.350,<1.2"
2020

2121
[tool.ruff]

0 commit comments

Comments
 (0)