Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
Closed
Description
Emscripten build fails to importimportlib.metadat becuase theemail module is missing.
>>> import importlib.metadataTraceback (most recent call last): File "<console>", line 1, in <module> File "/workspaces/cpython/Lib/importlib/metadata/__init__.py", line 14, in <module>ModuleNotFoundError: No module named 'email'email module is omitted [here], marked as a networking-related package.
cpython/Tools/wasm/emscripten/wasm_assets.py
Lines 60 to 61 infc0305a
| OMIT_NETWORKING_FILES= ( | |
| "email/", |
But the email format is used for parsing the package metadata as well, so I think it is better to include it in emscripten builds.