From 79bc56e29e423afeb40547a7d77298f53f5c7ad3 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Sat, 5 Oct 2024 11:54:14 +0200 Subject: [PATCH 1/2] Process builds for kivy-deps.angle and kivy-deps.glew for Python 3.13 From 0005161cb5d91429b3e81689b61f74a001dd0cc1 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Sat, 5 Oct 2024 12:07:30 +0200 Subject: [PATCH 2/2] Fix a PEP8 issue (to perform builds) --- win/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win/common.py b/win/common.py index bd8ab53..6d6ae18 100644 --- a/win/common.py +++ b/win/common.py @@ -36,7 +36,7 @@ def sha1OfFile(filename): sha = hashlib.sha1() with open(filename, 'rb') as f: while True: - block = f.read(2 ** 10) # Magic number: one-megabyte blocks. + block = f.read(2 ** 10) # Magic number: one-megabyte blocks. if not block: break sha.update(block)