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
I'm using it to learn marimo. I've built a little demo app jjjquery.
One of the really cool features of marimo is being able to run the whole thing in the browser using WASM. To install packages from within Python code, we use micropip. Now, when I attempt to install abc-radio-wrapper, it gives the following error:
I think there's an error with your flake8 version specifier (should be >=, not >==):
Why is it looking at test dependencies? I don't think micropip is trying to install test dependencies. I think it's simply trying to parse the wheel's metadata and erroring out when it encounters >==.
I've been able to work around this by including the whole abc_radio_wrapper.py module in mine, but that seems like cheating!
The text was updated successfully, but these errors were encountered:
Your package is a dream to use!
I'm using it to learn marimo. I've built a little demo app jjjquery.
One of the really cool features of marimo is being able to run the whole thing in the browser using WASM. To install packages from within Python code, we use micropip. Now, when I attempt to install abc-radio-wrapper, it gives the following error:
I think there's an error with your flake8 version specifier (should be
>=
, not>==
):ABC-Radio-Wrapper/setup.py
Line 23 in 79d2040
Why is it looking at test dependencies? I don't think micropip is trying to install test dependencies. I think it's simply trying to parse the wheel's metadata and erroring out when it encounters
>==
.I've been able to work around this by including the whole abc_radio_wrapper.py module in mine, but that seems like cheating!
The text was updated successfully, but these errors were encountered: