Skip to content

Commit a8df010

Browse files
committed
bump to poetry 2.1
1 parent 7a82c1f commit a8df010

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/.github/dependabot.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# yaml-language-server: $schema=https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/dependabot-2.0.json
22
version: 2
33
updates:
4-
- package-ecosystem: "pip"
5-
directory: "/"
4+
- package-ecosystem: pip
5+
directory: /
66
schedule:
7-
interval: "weekly"
7+
interval: weekly
88
labels:
99
- automerge
10-
- package-ecosystem: "github-actions"
11-
directory: "/"
10+
- package-ecosystem: github-actions
11+
directory: /
1212
schedule:
13-
interval: "weekly"
13+
interval: weekly
1414
labels:
1515
- automerge

src/pyproject.toml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ mkdocs-material = ">=9"
1919
mypy = ">=1"
2020
pre-commit = ">=4"
2121
pytest = ">=8"
22-
ruff = ">=0.9"
22+
ruff = ">=0.11"
2323
taskipy = ">=1"
2424

2525
[tool.taskipy.tasks]
26-
clean = { cmd = "rm -rf .*_cache/ build/ dist/ *.egg-info", help = "Remove build artifacts" }
26+
clean = { cmd = "rm -rf .*_cache/ dist/", help = "Remove build artifacts" }
2727
{% if docs -%}
2828
docs = { cmd = "mkdocs serve -f docs/mkdocs.yaml", help = "Serve documentation"}
2929
{% endif -%}

src/{% if docker %}Dockerfile{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /app
55
FROM base AS builder
66

77
# Install poetry
8-
RUN pip install --no-cache-dir poetry~=2.0 \
8+
RUN pip install --no-cache-dir poetry~=2.1 \
99
&& poetry config virtualenvs.in-project true
1010

1111
# Install deps

0 commit comments

Comments
 (0)