Skip to content

Commit

Permalink
Process builds for kivy-deps.angle and kivy-deps.glew for Python …
Browse files Browse the repository at this point in the history
…3.13 [publish glew win] [publish angle win] (#124)

* Process builds for kivy-deps.angle and kivy-deps.glew for Python 3.13

* Fix a PEP8 issue (to perform builds)
  • Loading branch information
misl6 authored Oct 7, 2024
1 parent 1326451 commit 3bd92d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3bd92d2

Please sign in to comment.