Skip to content

Commit c4ed8a1

Browse files
committed
chore: Template upgrade
1 parent 5eefa86 commit c4ed8a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.13
2+
_commit: 1.11.14
33
_src_path: gh:pawamoy/copier-uv
44
author_email: dev@pawamoy.fr
55
author_fullname: Timothée Mazzucotelli

duties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def publish(ctx: Context) -> None:
157157
"""Publish source and wheel distributions to PyPI."""
158158
if not Path("dist").exists():
159159
ctx.run("false", title="No distribution files found")
160-
dists = [str(dist) for dist in Path("dist").iterdir() if dist.suffix in (".tar.gz", ".whl")]
160+
dists = [str(dist) for dist in Path("dist").iterdir() if dist.suffix in (".gz", ".whl")]
161161
ctx.run(
162162
tools.twine.upload(*dists, skip_existing=True),
163163
title="Publishing distributions to PyPI",

0 commit comments

Comments
 (0)