-
Notifications
You must be signed in to change notification settings - Fork 551
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
Python Framework build for macOS? #58
Comments
Perhaps system python might be able to work? https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#using-the-default-python-version You would not use the |
The system Python on macOS is the hopelessly obsolete Python 2.7, so unfortunately that is not an option. |
Python 2.7 has reach EOL so it will be interesting to see what Apple does with system Python. Rather unfortunate that it's not an option.
An extra version of Python would have to be added to our Mac images (we're also evaluating options that wouldn't require updates to our hosted images). When adding something to our hosted images, we consider these guidelines: https://github.com/actions/virtual-environments#software-guidelines Extra options are always a good thing for developers and this could definitely be useful. |
On the other hand I would argue that you could replace the current Python with a framework build, as that's the norm on macOS. Both python.org and homebrew's Pythons are framework builds, and are good for everything. The one on github actions is the odd one out, and not is usable for some applications. |
Apple will completely remove Python in a future macOS release. From macOS Catalina 10.15 Release Notes
|
Flagging that I think this would be even more useful now, since MacOS 14 has become the |
I just had to work around this yesterday: I managed to make it work by using the full path into the Python framework: Ugly but effective. |
Add MacOS dedicated build of Sentry kernel. No matrix build by now, yet validate that the Sentry kernel can be built on MacOS X operating system. The workflow requires some python fixes associated to homebrew usage (see actions/setup-python#58) due to Github actions constraints, in the same way mesonbuild does in its macos workflow. This part is left to the MacOS X user on a standard development host. The parseelf.py script is also fixed to user normalized `/usr/bin/env python3` as shebang
Sorry, I am not 100% sure this is the correct place for my question/issue.
The Python build offered by setup-python on macOS is not a so-called "Framework build". This prohibits certain usages, such as building native Mac applications with Python.
I can use the supplied Python (3.7 in my case) to run my test suite, but to build my application, I will either have to resort to homebrew (ugh) or download an installer from python.org, which, while slightly less ugh will make my build time a lot longer, unnecessarily increasing my resource usage.
Here is some useful info: https://stackoverflow.com/questions/1444543/differences-between-framework-and-non-framework-builds-of-python-on-mac-os-x
Is there a chance GitHub actions could provide a Framework build of Python in the future?
The text was updated successfully, but these errors were encountered: