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
Use Python 3.8 for standalone installations instead of 3.10
This sidesteps issues with the relatively-new files() / Traversable API
of importlib.resources that is present in 3.9 and 3.10 but not supported
by PyOxidizer's OxidizedImporter. It only supports the original
importlib.resources API and importlib.resources doesn't implement a
backwards compatibility layer/adapter until Python 3.11 (not yet
released). By using 3.8, code which tests for the presence of the new
API in importlib.resources or tests the Python version will not detect
stdlib support for the new API and thus will generally fall back to the
API supported by PyOxidizer.
Related-to: <certifi/python-certifi#203>
0 commit comments