From 5d7fff99e54614943f58639f778481a2a453d2cf Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 30 Aug 2024 09:17:38 +0530 Subject: [PATCH] Change the authenticode timestamp server URL The symantec server has been shutdown --- bypy/windows/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bypy/windows/__main__.py b/bypy/windows/__main__.py index 5749b2fb15..23f551ee0f 100644 --- a/bypy/windows/__main__.py +++ b/bypy/windows/__main__.py @@ -372,7 +372,7 @@ def sign_files(env, files): 'https://calibre-ebook.com', '/f', CODESIGN_CERT, '/p', pw, '/tr'] def runcmd(cmd): - for timeserver in ('http://sha256timestamp.ws.symantec.com/sha256/timestamp', 'http://timestamp.comodoca.com/rfc3161',): + for timeserver in ('http://timestamp.comodoca.com/rfc3161', 'http://timestamp.sectigo.com'): try: subprocess.check_call(cmd + [timeserver] + list(files)) break