diff --git a/setup.py b/setup.py index 050149b5..b0586857 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)