We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
fs
fsspec
As suggested by @cmutel, moving to fsspec would solve two issues with fs (pyfilesystem):
if not _WINDOWS_PLATFORM: import grp
bw_processing.datapackage.fs.close()
grp
bw2data
config.is_test
Note that this was patched in the current https://live.brightway.dev release:
import micropip await micropip.install( 'https://files.brightway.dev/fs-2.5.1-py2.py3-none-any.whl' )
Still, it would be great to move to fsspec, which is supported by both Pyodide and emscipten-forge (via the pure Python channel).
This would close:
bw_processing
The text was updated successfully, but these errors were encountered:
@michaelweinold Told you this was a dirty hack 😛
Sorry, something went wrong.
Fixed in #66
Noice! 🎉 Will remove the custom patch with the next bw_procesing release!
bw_procesing
No branches or pull requests
As suggested by @cmutel, moving to
fsspec
would solve two issues withfs
(pyfilesystem):if not _WINDOWS_PLATFORM: import grp
causes an error in WASM (Pyodide/JupyterLite-XEUS):bw_processing.datapackage.fs.close()
usesgrp
(which is not available in Pyodide) brightway-live#38bw2data
error withconfig.is_test
brightway-live#39Note that this was patched in the current https://live.brightway.dev release:
Still, it would be great to move to
fsspec
, which is supported by both Pyodide and emscipten-forge (via the pure Python channel).This would close:
fs
importsgrp
inbw_processing
, which is not supported in WASM brightway-live#53The text was updated successfully, but these errors were encountered: