Setup: pin cx_freeze to 7.0.0 (#3406)

7.1.0 is broken on Linux when using pygobject, which we use as optional dependency for kivy.
This commit is contained in:
black-sliver 2024-05-26 21:22:40 +02:00 committed by GitHub
parent 61e88526cf
commit f249c36f8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ from pathlib import Path
# This is a bit jank. We need cx-Freeze to be able to run anything from this script, so install it
try:
requirement = 'cx-Freeze>=7.0.0'
requirement = 'cx-Freeze==7.0.0'
import pkg_resources
try:
pkg_resources.require(requirement)