No longer signing releases
diff --git a/scripts/release.py b/scripts/release.py
index c540640..8253ab1 100644
--- a/scripts/release.py
+++ b/scripts/release.py
@@ -63,8 +63,7 @@
     args = ['twine', 'upload']
     for fn in artifacts:
         if matches(fn):
-            filename = os.path.join('dist', fn)
-            args.extend([filename, filename + '.asc'])
+            args.append(os.path.join('dist', fn))
     subprocess.check_call(args)