summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2018-09-07 17:57:07 -0700
committerBob Ippolito <bob@redivi.com>2018-09-07 17:57:07 -0700
commit1bac22505d63c9e94827c04cc7352ce82ca175d3 (patch)
tree2f9af2c5035d06c987f433169c81ff66ac852b15 /scripts
parentbfa10c093f2bcdd1fd161101d3934af96e7233c5 (diff)
downloadsimplejson-1bac22505d63c9e94827c04cc7352ce82ca175d3.tar.gz
No longer signing releases
Diffstat (limited to 'scripts')
-rw-r--r--scripts/release.py3
1 files changed, 1 insertions, 2 deletions
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 @@ def upload_artifacts(version):
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)