summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-05-25 14:10:41 -0400
committerJeff Forcier <jeff@bitprophet.org>2023-05-25 14:12:12 -0400
commitd389c187a45c69f7697660b628335192837fe3ff (patch)
tree2311a78c9f5a0389d0014697a000da2064ee0ddf
parentbfff922d09aefdb342e2aac1266e18a3ad80b940 (diff)
No more GPG on PyPI
-rw-r--r--tasks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks.py b/tasks.py
index 93c54466..361d9cda 100644
--- a/tasks.py
+++ b/tasks.py
@@ -101,7 +101,7 @@ def guard(ctx, opts=""):
# projects do it.
@task
def publish_(
- ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None
+ ctx, sdist=True, wheel=True, sign=False, dry_run=False, index=None
):
"""
Wraps invocations.packaging.publish to add baked-in docs folder.
@@ -152,7 +152,7 @@ ns.configure(
# NOTE: many of these are also set in kwarg defaults above; but
# having them here too means once we get rid of our custom
# release(), the behavior stays.
- "sign": True,
+ "sign": False,
"wheel": True,
"changelog_file": join(
www.configuration()["sphinx"]["source"], "changelog.rst"