Skip to content

Commit

Permalink
Windows app: allow building with 64 bit Python
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanDunfield committed Sep 6, 2023
1 parent 598d440 commit 188be8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions windows_exe/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
# to start up. While it does start up normally if installed elsewhere,
# we want to resolve this issue before releasing a 64 bit app.

if platform.architecture()[0] != '32bit' and '--64-bit' not in sys.argv:
print("ERROR: Need to use a 32bit Python to build the apps")
sys.exit(1)
# if platform.architecture()[0] != '32bit' and '--64-bit' not in sys.argv:
# print("ERROR: Need to use a 32bit Python to build the apps")
# sys.exit(1)

try:
import pyx
Expand Down

0 comments on commit 188be8f

Please sign in to comment.