We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34fb702 commit ee7e6c0Copy full SHA for ee7e6c0
2 files changed
.copier-answers.yml
@@ -1,5 +1,5 @@
1
# Changes here will be overwritten by Copier.
2
-_commit: 1.11.13
+_commit: 1.11.14
3
_src_path: gh:pawamoy/copier-uv
4
author_email: dev@pawamoy.fr
5
author_fullname: Timothée Mazzucotelli
duties.py
@@ -157,7 +157,7 @@ def publish(ctx: Context) -> None:
157
"""Publish source and wheel distributions to PyPI."""
158
if not Path("dist").exists():
159
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")]
+ dists = [str(dist) for dist in Path("dist").iterdir() if dist.suffix in (".gz", ".whl")]
161
ctx.run(
162
tools.twine.upload(*dists, skip_existing=True),
163
title="Publishing distributions to PyPI",
0 commit comments