Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ default_language_version:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-added-large-files
args: ["--maxkb=700"]
Expand All @@ -20,7 +20,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/crate-ci/typos
rev: v1.32.0
rev: v1.37.2
hooks:
- id: typos
args: []
Expand All @@ -35,21 +35,21 @@ repos:
- "--py38-plus"

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.25.0
rev: 1.28.0
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]


- repo: https://github.com/python-poetry/poetry
rev: 1.8.0
rev: 2.2.1
hooks:
- id: poetry-check
additional_dependencies:
- poetry-plugin-sort==0.2.0
- poetry-plugin-sort

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.12
rev: v0.13.3
hooks:
- id: ruff-format
- id: ruff-check
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ django-fsm 2.5.0 2017-03-04
django-fsm 2.4.0 2016-05-14
~~~~~~~~~~~~~~~~~~~~~~~~~~~

- graph_transition commnad now works with multiple FSM's per model
- graph_transition command now works with multiple FSM's per model
- Add ability to set target state from transition return value or callable


Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ extend-ignore = [
"EM102", # Exception must not use an f-string literal, assign to variable first
"SLF001", # Private member accessed
"SIM103", # Return the condition directly
"PLC0415", # `import` should be at the top-level of a file
"PLR0913", # Too many arguments in function definition
]
fixable = [
Expand Down
Loading