Skip to content

Commit a53c660

Browse files
updated dependencies and add CI check
1 parent 5e3a7fc commit a53c660

File tree

4 files changed

+43
-33
lines changed

4 files changed

+43
-33
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
run: |
2727
task list-crlf
2828
29+
- name: Check poetry.lock is up to date
30+
run: |
31+
pip install poetry
32+
task check-lock
33+
2934
- name: Verify CHANGELOG.md was updated
3035
run: |
3136
task check-changelog

Taskfile.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ tasks:
6666
- pdoc -o docs pedantic
6767
silent: true
6868

69+
check-lock:
70+
desc: Check if poetry.lock is in sync with pyproject.toml
71+
cmds:
72+
- poetry check
73+
6974
list-crlf:
7075
desc: List all Python files with CRLF line endings
7176
silent: true

poetry.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ dev = [
3333
"docstring-parser==0.17",
3434
"pytest==9.0.2",
3535
"pytest-asyncio==1.3.0",
36-
"pytest-cov==7.0.0",
37-
"Flask[async]==3.1.2",
36+
"pytest-cov==7.1.0",
37+
"Flask[async]==3.1.3",
3838
"multiprocess==0.70.19",
39-
"ruff==0.15.1",
40-
"Werkzeug==3.1.5",
39+
"ruff==0.15.9",
40+
"Werkzeug==3.1.8",
4141
]
4242

4343
[tool.setuptools.packages.find]

0 commit comments

Comments
 (0)