summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2020-03-14 09:44:31 -0700
committerBob Ippolito <bob@redivi.com>2020-03-14 09:44:31 -0700
commit23d0391255ad72fb342097bcbf056a9388b1b250 (patch)
treef76120e811f28ea9ec9c716f7dc9ec9de42b9f01 /scripts
parent6cbbd1859f7ff219c19f68d3063842cdd6db1885 (diff)
downloadsimplejson-23d0391255ad72fb342097bcbf056a9388b1b250.tar.gz
Per PEP 527 stop building bdist_wininst
Diffstat (limited to 'scripts')
-rw-r--r--scripts/release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/release.py b/scripts/release.py
index 8253ab1..34e23ff 100644
--- a/scripts/release.py
+++ b/scripts/release.py
@@ -51,7 +51,7 @@ def artifact_matcher(version):
def matches(fn):
return (
fn.startswith(prefix) and
- os.path.splitext(fn)[1] in ('.exe', '.whl') and
+ fn.endswith('.whl') and
not fn.endswith('-none-any.whl')
) or fn == '{}.tar.gz'.format(prefix)
return matches