summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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"