Hi, are there any hints for how to build this as a pyodide package? I'm trying with Pyodide stable (0.17.0, with Python 3.8), and I think I've almost made it work by:
- linking unthrow into the pyodide/packages directory
- building pyodide with
PYODIDE_PACKAGES="unthrow" make
but there might be issues with the meta.yaml: path refers to non-existent ./src. If I change path to unthrow and move setup.py to the unthrow subdirectory, it builds successfully with the HEAD version of Pyodide (i.e., almost version 0.18.0), though it complains about missing Python.h when building with 0.17.0. Does this perhaps mean that unthrow has been updated for Python 3.9?
Hi, are there any hints for how to build this as a pyodide package? I'm trying with Pyodide stable (0.17.0, with Python 3.8), and I think I've almost made it work by:
PYODIDE_PACKAGES="unthrow" makebut there might be issues with the meta.yaml:
pathrefers to non-existent./src. If I changepathtounthrowand movesetup.pyto theunthrowsubdirectory, it builds successfully with the HEAD version of Pyodide (i.e., almost version 0.18.0), though it complains about missingPython.hwhen building with 0.17.0. Does this perhaps mean thatunthrowhas been updated for Python 3.9?