Skip to content

Commit 9b0c8c0

Browse files
committed
update some dependencies, add pre-commit
1 parent 07a19cd commit 9b0c8c0

5 files changed

Lines changed: 680 additions & 364 deletions

File tree

.pre-commit-config.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
repos:
4+
- repo: https://github.com/python-poetry/poetry
5+
rev: "2.3.2"
6+
hooks:
7+
- id: poetry-check
8+
language: system
9+
- id: poetry-lock
10+
language: system
11+
- repo: https://github.com/astral-sh/ruff-pre-commit
12+
rev: v0.15.10
13+
hooks:
14+
- id: ruff-check
15+
args: [--fix]
16+
- id: ruff-format

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,9 @@ get-poetry:
8484
# check for dependency updates
8585
check-updates:
8686
poetry show --outdated
87+
88+
# update dependencies to latest versions
89+
update:
90+
poetry update
91+
$(MAKE) lock
92+
pre-commit autoupdate

0 commit comments

Comments
 (0)