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 8df2c40 commit 006282cCopy full SHA for 006282c
duties.py
@@ -386,7 +386,7 @@ def publish(ctx: Context) -> None:
386
"""
387
if not Path("dist").exists():
388
ctx.run("false", title="No distribution files found")
389
- 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")]
390
ctx.run(
391
tools.twine.upload(*dists, skip_existing=True),
392
title="Publishing distributions to PyPI",
0 commit comments