You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Windows: Py_NO_LINK_LIB is only honored by Python 3.14+'s pyconfig.h —
3.12 and 3.13 don't guard the `pragma comment(lib, "pythonXY_d.lib")`
auto-link directive with that macro, so the Debug pragma fired regardless
and the link failed with LNK1104. Add `/NODEFAULTLIB:pythonXY_d.lib` at
link time to both serious_python_windows_plugin and flet_bridge — works
across every supported Python version. Keep the Py_NO_LINK_LIB define
too, for 3.14+ cleanliness.
Android: gradle errored with "unknown property 'pythonStagingRoot'"
because the variable was defined after the `android {}` block but
referenced inside it (in the cmake.arguments expression). Hoist the
definition above `android {}`.
0 commit comments