From 0418cbb297a483b13aad854d4c3d5068a77c05e1 Mon Sep 17 00:00:00 2001 From: shibbo Date: Sat, 21 Sep 2024 19:26:07 -0400 Subject: [PATCH] update `setup.py` zip hash --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 050149b5f..b05868576 100644 --- a/setup.py +++ b/setup.py @@ -78,7 +78,7 @@ def install(what): with urllib.request.urlopen("http://shibbo.net/smg/Compilers.zip") as response, open("Compilers.zip", 'wb') as out: data = response.read() - if hashlib.sha256(data).hexdigest().upper() != "12D439B707D7AECB1BCD5B321DA406310523357128ABADB1493BED212A4A225F": + if hashlib.sha256(data).hexdigest().upper() != "1856A7CDDD7630F35D2BBF4494B1CD929B21EEFB3363DB82B3E328F2E0F02227": print("Compilers.zip corrupt") sys.exit(1) out.write(data)