Skip to content

Commit 862a891

Browse files
committed
chore: Template upgrade
1 parent 2666aaa commit 862a891

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier.
2-
_commit: 1.11.6
2+
_commit: 1.11.12
33
_src_path: gh:pawamoy/copier-uv
44
author_email: dev@pawamoy.fr
55
author_fullname: Timothée Mazzucotelli

config/vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"ruff.lint.args": [
1717
"--config=config/ruff.toml"
1818
],
19+
"ty.configurationFile": "config/ty.toml",
1920
"yaml.schemas": {
2021
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
2122
},

duties.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def build(ctx: Context) -> None:
368368
"""
369369
ctx.run(
370370
["uv", "build", "--all"],
371-
title="Building package source and wheel distributions",
371+
title="Building distributions",
372372
pty=PTY,
373373
)
374374

@@ -389,7 +389,7 @@ def publish(ctx: Context) -> None:
389389
dists = [str(dist) for dist in Path("dist").iterdir() if dist.suffix in (".tar.gz", ".whl")]
390390
ctx.run(
391391
tools.twine.upload(*dists, skip_existing=True),
392-
title="Publishing source and wheel distributions to PyPI",
392+
title="Publishing distributions to PyPI",
393393
pty=PTY,
394394
)
395395

0 commit comments

Comments
 (0)