Skip to content

Commit

Permalink
Setup: update cx_freeze to latest 6.x and exclude 7.x (#3194)
Browse files Browse the repository at this point in the history
7.x has a breaking API change for us, so that needs to be resolved separately.
  • Loading branch information
black-sliver authored Apr 22, 2024
1 parent e22ac85 commit 747b481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# 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)
Expand Down

0 comments on commit 747b481

Please sign in to comment.