Setup: update cx_freeze to latest 6.x and exclude 7.x (#3194)

7.x has a breaking API change for us, so that needs to be resolved separately.
This commit is contained in:
black-sliver 2024-04-22 13:54:35 +02:00 committed by GitHub
parent e22ac85e15
commit 747b48183c
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>=6.15.10'
requirement = 'cx-Freeze>=6.15.16,<7'
import pkg_resources
try:
pkg_resources.require(requirement)