-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix mac Builds #18188
Fix mac Builds #18188
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some adhoc remarks, I know it is not ready yet
@@ -1,5 +1,5 @@ | |||
pytest | |||
pyinstaller==5.8.0 | |||
pyinstaller==6.3.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we're using the latest version then I would suggest to unpin the version
# Conflicts: # conanfile.py
Due to some breaking changes in pyinstaller upgrade, add option to use old packaging pyinstaller/pyinstaller#7713 CURA-11483
43273d3
to
54d6315
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, less code = less bugs !
Since the pyqt 6.6 upgrade the mac builds were failing. Main fix was to upgrade pyinstaller (which allowed us to remove a whole lot of ugly ductyping).
In the new packaged app the file structure is a bit different for mac, so had to change some paths.
Also see Uranum PR: https://github.com/Ultimaker/Uranium/pull/936/files
CURA-11483