import micropip; URL=("https://pypi.anaconda.org/scikit-plots-wheels-staging-nightly/"
"simple/scikit-plots/{version}/scikit_plots-{version}-cp312-cp312-pyodide_2024_0_wasm32.whl")
for v in ["0.5.dev0","0.4.0.post9"]:
    try: await micropip.install(URL.format(version=v),keep_going=True)
    except: await micropip.install("scikit-plots==0.3.9rc3",keep_going=True)
import scikitplot as sp; print("scikit-plots version:", sp.__version__); sp.show_versions()
