Skip to content

Commit

Permalink
Setup: update cx_freeze to 7.x (ArchipelagoMW#3195)
Browse files Browse the repository at this point in the history
  • Loading branch information
black-sliver authored and qwint committed Jun 24, 2024
1 parent f98d23e commit 6906b90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 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.16,<7'
requirement = 'cx-Freeze>=7.0.0'
import pkg_resources
try:
pkg_resources.require(requirement)
Expand Down Expand Up @@ -228,8 +228,8 @@ def finalize_options(self):


# Override cx_Freeze's build_exe command for pre and post build steps
class BuildExeCommand(cx_Freeze.command.build_exe.BuildEXE):
user_options = cx_Freeze.command.build_exe.BuildEXE.user_options + [
class BuildExeCommand(cx_Freeze.command.build_exe.build_exe):
user_options = cx_Freeze.command.build_exe.build_exe.user_options + [
('yes', 'y', 'Answer "yes" to all questions.'),
('extra-data=', None, 'Additional files to add.'),
]
Expand Down

0 comments on commit 6906b90

Please sign in to comment.