Fix misconfigured meta.yaml (#3354)

This commit is contained in:
Gyeongjae Choi 2022-12-15 11:40:46 +09:00 committed by GitHub
parent f0189de3f5
commit 6c92594e2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 2 deletions

View File

@ -21,6 +21,7 @@ build:
--without-python \
--with-iconv="${WASM_LIBRARY_DIR}/lib" \
--with-zlib="${WASM_LIBRARY_DIR}/lib" \
--with-lzma="no" \
--prefix=${WASM_LIBRARY_DIR}
emmake make -j ${PYODIDE_JOBS:-3}
emmake make install

View File

@ -19,7 +19,8 @@ source:
build:
script: |
# regenerate erfa/ufunc.c from our patched erfa/ufunc.c.templ.
python3.10 erfa_generator.py
python3 -m pip install jinja2
python3 erfa_generator.py
requirements:
host:
- numpy

View File

@ -111,6 +111,7 @@ requirements:
host:
- numpy
- CLAPACK
- boost-cpp
run:
- numpy
- CLAPACK

View File

@ -17,7 +17,8 @@ requirements:
- scipy
- suitesparse
- distutils
host:
- suitesparse
build:
script: |
# FIXME: We are not dealing with poetry build system correctly.