Skip to content

Commit 3c6dc0a

Browse files
committed
PyPI no longer supports GPG signatures
1 parent 3b51e78 commit 3c6dc0a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

publish.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ def build_release():
4444
run(sys.executable, '-m', 'build', '-s')
4545

4646

47-
def sign_release():
48-
for installer in glob.glob('dist/*'):
49-
run(os.environ['PENV'] + '/gpg-as-kovid', '--armor', '--detach-sig', installer)
50-
51-
5247
def tag_release():
5348
run('git push')
5449
run('git tag -s "v{0}" -m "version-{0}"'.format(VERSION))
@@ -70,7 +65,6 @@ def main():
7065
if raw_input('Publish version {} [y/n]? '.format(red(VERSION))) != 'y':
7166
raise SystemExit(1)
7267
build_release()
73-
sign_release()
7468
if raw_input(red('Upload') + ' release [y/n]? ') != 'y':
7569
raise SystemExit(1)
7670
tag_release()

0 commit comments

Comments
 (0)