-
Notifications
You must be signed in to change notification settings - Fork 9
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
Allow overriding _f2c_fixes.py from user #8
Conversation
for more information, see https://pre-commit.ci
Interesting, thanks @ryanking13. Looks reasonable for now. I'm currently working on making a fork of f2c with modifications that suit our needs so hopefully we can get rid of f2c_fixes. |
Cool. That sounds ambitious :)
Yeah, for now, I am trying to remove all annoying parts when unvendoring pyodide-build. |
While most parts of pyodide-build are decoupled with pyodide/pyodide,
_f2c_fixes.py
file that is used to build scipy is highly coupled with the scipy recipe in pyodide/pyodide.It would be very inefficient if we need to update pyodide-build whenever we fix scipy (e.g. pyodide/pyodide#4818). Therefore, this add a private config variable
_f2c_fixes_wrapper
, which allows users to modify override_f2c_fixes.py
file without touching pyodide-build itself.