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
For compatibility in the 0.13 release series, this feature had to be enabled by default (where this behaviour already exists).
In addition, the compile_error error message where this feature is enabled for PyPy and statically-linked Python interpreters had to be supressed for feature = "extension-module" cases, to avoid breaking builds.
In PyO3 0.14 we should:
remove the auto-initialize feature from default-features. (and update the guide)
change the compile_error message in gil.rs to show always (not just for not(feature = "extension-module")).
The text was updated successfully, but these errors were encountered:
PR #1347 added the
auto-initialize
feature.For compatibility in the 0.13 release series, this feature had to be enabled by default (where this behaviour already exists).
In addition, the
compile_error
error message where this feature is enabled forPyPy
and statically-linked Python interpreters had to be supressed forfeature = "extension-module"
cases, to avoid breaking builds.In PyO3 0.14 we should:
auto-initialize
feature fromdefault-features
. (and update the guide)compile_error
message ingil.rs
to show always (not just fornot(feature = "extension-module")
).The text was updated successfully, but these errors were encountered: