├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation.md │ └── package_request.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── comment-build-summary.yml │ ├── comment-test-summary.yml │ └── remove-old-artifacts.yml ├── .gitignore ├── .gitmodules ├── .gitpod.yml ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── conftest.py ├── docs └── MAINTAINERS.md ├── environment.yml ├── packages ├── Cartopy │ ├── meta.yaml │ └── test_cartopy.py ├── Jinja2 │ ├── meta.yaml │ └── test_jinja2.py ├── MarkupSafe │ └── meta.yaml ├── Pillow │ ├── meta.yaml │ └── test_pillow.py ├── PyMuPDF │ ├── meta.yaml │ └── test_pymupdf.py ├── Pygments │ └── meta.yaml ├── README.md ├── RobotRaconteur │ ├── meta.yaml │ └── test_robotraconteur.py ├── affine │ └── meta.yaml ├── aiohappyeyeballs │ └── meta.yaml ├── aiohttp │ ├── aiohttp_patch.py │ ├── meta.yaml │ └── test_aiohttp.py ├── aiosignal │ └── meta.yaml ├── altair │ ├── meta.yaml │ └── test_altair.py ├── annotated-types │ └── meta.yaml ├── anyio │ └── meta.yaml ├── apsw │ ├── meta.yaml │ └── test_apsw.py ├── argon2-cffi-bindings │ └── meta.yaml ├── argon2-cffi │ ├── meta.yaml │ ├── patches │ │ └── 0001-Added-platform-check-for-parallelism-since-WASM-does.patch │ └── test_argon2-cffi.py ├── arro3-compute │ └── meta.yaml ├── arro3-core │ ├── meta.yaml │ └── test_arro3_core.py ├── arro3-io │ └── meta.yaml ├── asciitree │ └── meta.yaml ├── astropy │ ├── meta.yaml │ └── test_astropy.py ├── astropy_iers_data │ └── meta.yaml ├── asttokens │ └── meta.yaml ├── async-timeout │ └── meta.yaml ├── atomicwrites │ └── meta.yaml ├── attrs │ └── meta.yaml ├── audioop-lts │ ├── meta.yaml │ └── test_audioop_lts.py ├── autograd │ └── meta.yaml ├── awkward-cpp │ ├── meta.yaml │ └── test_awkward_cpp.py ├── b2d │ ├── meta.yaml │ └── test_pyb2d.py ├── bcrypt │ ├── meta.yaml │ └── test_bcrypt.py ├── beautifulsoup4 │ └── meta.yaml ├── bilby.cython │ ├── meta.yaml │ └── test_bilby_cython.py ├── biopython │ └── meta.yaml ├── bitarray │ ├── meta.yaml │ └── test_bitarray.py ├── bitstring │ ├── meta.yaml │ └── test_bitstring.py ├── bleach │ └── meta.yaml ├── blosc2 │ ├── meta.yaml │ └── test_blosc2.py ├── bokeh │ ├── meta.yaml │ └── test_bokeh.py ├── boost-histogram │ ├── meta.yaml │ └── test_boost_histogram.py ├── brotli │ ├── meta.yaml │ └── test_brotli.py ├── cachetools │ └── meta.yaml ├── casadi │ ├── meta.yaml │ └── test_casadi.py ├── cbor-diag │ ├── meta.yaml │ └── test_cbor_diag.py ├── certifi │ ├── meta.yaml │ └── test_certifi.py ├── cffi │ ├── meta.yaml │ └── test_cffi.py ├── cffi_example │ ├── meta.yaml │ └── test_cffi_example.py ├── cftime │ └── meta.yaml ├── charset-normalizer │ └── meta.yaml ├── clarabel │ ├── meta.yaml │ ├── patches │ │ └── 0001-Update-faer-version.patch │ └── test_clarabel.py ├── click │ └── meta.yaml ├── cligj │ └── meta.yaml ├── clingo │ ├── meta.yaml │ └── test_clingo.py ├── cloudpickle │ ├── meta.yaml │ └── test_cloudpickle.py ├── cmyt │ └── meta.yaml ├── cobs │ ├── meta.yaml │ └── test_cobs.py ├── colorspacious │ └── meta.yaml ├── contourpy │ ├── meta.yaml │ └── test_contourpy.py ├── coolprop │ ├── extras │ │ ├── pyproject.toml │ │ └── setup.py │ ├── meta.yaml │ └── test_coolprop.py ├── coverage │ └── meta.yaml ├── cramjam │ ├── meta.yaml │ └── test_cramjam.py ├── crc32c │ ├── meta.yaml │ └── test_crc32c.py ├── cryptography │ ├── meta.yaml │ ├── patches │ │ └── 0001-Tell-rust-lang-libc-that-time_t-is-64-bits.patch │ └── test_cryptography.py ├── css-inline │ ├── meta.yaml │ └── test_css_inline.py ├── cssselect │ └── meta.yaml ├── cvxpy-base │ ├── meta.yaml │ └── test_cvxpy.py ├── cycler │ └── meta.yaml ├── cysignals │ ├── meta.yaml │ └── patches │ │ └── 0001-src-cysignals-implementation.c-EMSCRIPTEN-Do-not-use.patch ├── cytoolz │ └── meta.yaml ├── decorator │ └── meta.yaml ├── demes │ └── meta.yaml ├── deprecation │ └── meta.yaml ├── diskcache │ └── meta.yaml ├── distlib │ └── meta.yaml ├── distro │ └── meta.yaml ├── docutils │ └── meta.yaml ├── donfig │ └── meta.yaml ├── duckdb │ ├── meta.yaml │ └── test_duckdb.py ├── ewah_bool_utils │ └── meta.yaml ├── exceptiongroup │ └── meta.yaml ├── executing │ └── meta.yaml ├── fastapi │ ├── asgi.py │ ├── fastapi_test_app.py │ ├── fastapi_test_helper.py │ ├── meta.yaml │ └── test_fastapi.py ├── fastcan │ ├── meta.yaml │ └── test_fastcan.py ├── fastparquet │ ├── meta.yaml │ └── test_fastparquet.py ├── fiona │ ├── meta.yaml │ └── test_fiona.py ├── fonttools │ └── meta.yaml ├── freesasa │ └── meta.yaml ├── frozenlist │ ├── meta.yaml │ └── test_frozenlist.py ├── fsspec │ └── meta.yaml ├── future │ └── meta.yaml ├── galpy │ ├── meta.yaml │ └── test_galpy.py ├── gensim │ ├── meta.yaml │ └── patches │ │ └── 0001-Avoid-signature-mismatch-in-sdot-detection.patch ├── geopandas │ ├── meta.yaml │ └── test_geopandas.py ├── gmpy2 │ ├── meta.yaml │ ├── patches │ │ └── gmpy2-2.1.5-py312.patch │ └── test_gmpy2.py ├── gsw │ └── meta.yaml ├── h11 │ └── meta.yaml ├── h3 │ ├── meta.yaml │ └── test_h3.py ├── h5py │ ├── meta.yaml │ ├── patches │ │ ├── 0001-Fix-incompatible-pointer-type.patch │ │ └── configure.patch │ └── test_h5py.py ├── hashlib │ ├── meta.yaml │ ├── src │ │ └── pyproject.toml │ └── test_hashlib.py ├── highspy │ └── meta.yaml ├── html5lib │ └── meta.yaml ├── httpcore │ └── meta.yaml ├── httpx │ ├── meta.yaml │ └── test_httpx.py ├── idna │ ├── meta.yaml │ └── test_idna.py ├── igraph │ └── meta.yaml ├── imageio │ ├── meta.yaml │ └── test_imageio.py ├── imgui-bundle │ ├── demo │ │ ├── Readme.md │ │ └── demo_imgui_bundle.html │ ├── meta.yaml │ └── test_imgui_bundle.py ├── iminuit │ ├── meta.yaml │ └── test_iminuit.py ├── iniconfig │ └── meta.yaml ├── inspice │ ├── meta.yaml │ └── test_inspice.py ├── ipython │ ├── meta.yaml │ └── test_ipython.py ├── jedi │ ├── meta.yaml │ └── test_jedi.py ├── jiter │ ├── meta.yaml │ └── test_jiter.py ├── joblib │ ├── meta.yaml │ └── test_joblib.py ├── jsonpatch │ ├── jsonpatch_tests.py │ ├── meta.yaml │ ├── test_jsonpatch.py │ └── tests.json ├── jsonpointer │ ├── json_pointer_tests.py │ ├── jsonpointer_tests.py │ ├── meta.yaml │ └── test_jsonpointer.py ├── jsonschema │ └── meta.yaml ├── jsonschema_specifications │ └── meta.yaml ├── kiwisolver │ └── meta.yaml ├── lakers-python │ ├── meta.yaml │ └── test_lakers_python.py ├── lazy-object-proxy │ ├── meta.yaml │ └── test_lazy_object_proxy.py ├── lazy_loader │ └── meta.yaml ├── libboost │ └── meta.yaml ├── libcst │ ├── meta.yaml │ └── test_libcst.py ├── libde265 │ └── meta.yaml ├── libf2c │ ├── extras │ │ └── make.inc │ ├── meta.yaml │ └── patches │ │ ├── 0001-fix-arith.h.patch │ │ ├── 0002-fix-f2clibs-build.patch │ │ ├── 0003-remove-redundant-symbols.patch │ │ ├── 0004-correct-return-types.patch │ │ ├── 0005-Remove-symbols-defined-in-OpenBLAS.patch │ │ ├── 0006-adjust-ld-ar-ranlib.patch │ │ └── 0007-add-singlecomplex.patch ├── libffmpeg │ └── meta.yaml ├── libflac │ └── meta.yaml ├── libflint │ └── meta.yaml ├── libgdal │ └── meta.yaml ├── libgeos │ └── meta.yaml ├── libglpk │ └── meta.yaml ├── libgmp │ └── meta.yaml ├── libgsl │ └── meta.yaml ├── libhdf5 │ ├── meta.yaml │ ├── patches │ │ ├── 0001-Fix-incompatible-pointer-type.patch │ │ └── 0001-Hardcode-float-precision.patch │ └── settings │ │ ├── H5Tinit.c │ │ └── H5lib_settings.c ├── libheif │ └── meta.yaml ├── libiconv │ └── meta.yaml ├── liblzma │ └── meta.yaml ├── libmagic │ ├── meta.yaml │ └── patches │ │ └── 0001-Hardcode-magic.mgc-location.patch ├── libmp3lame │ └── meta.yaml ├── libmpc │ └── meta.yaml ├── libmpfr │ └── meta.yaml ├── libnetcdf │ ├── meta.yaml │ └── patches │ │ └── 0001-disable-hdf5-configure-tests.patch ├── libngspice │ ├── meta.yaml │ └── patches │ │ ├── 0001-keep-alive-API-functions.patch │ │ ├── 0002-fix-hicum2-extern-c.patch │ │ └── 0003-fix-verilog-install-hook.patch ├── libopenblas │ ├── meta.yaml │ └── patches │ │ ├── 0001-Add-Wno-return-type-flag.patch │ │ ├── 0002-Align-xerbla_array-signature-with-scipy-expectation.patch │ │ └── 0003-Skip-linktest.patch ├── libopenssl │ └── meta.yaml ├── libopus │ └── meta.yaml ├── libppl │ ├── meta.yaml │ └── patches │ │ └── clang5-support.patch ├── libprimecount │ └── meta.yaml ├── libprimesieve │ └── meta.yaml ├── libproj │ ├── meta.yaml │ └── patches │ │ └── 0001-stod-empty-zero.patch ├── libsndfile │ └── meta.yaml ├── libsuitesparse │ ├── meta.yaml │ └── patches │ │ └── 0001-Remove-non-essential-build-targets.patch ├── libtaglib │ └── meta.yaml ├── libtiff │ └── meta.yaml ├── libwebp │ └── meta.yaml ├── libxml │ └── meta.yaml ├── libxslt │ └── meta.yaml ├── libyaml │ └── meta.yaml ├── libzfp │ └── meta.yaml ├── libzlib │ └── meta.yaml ├── lightgbm │ ├── meta.yaml │ └── test_lightgbm.py ├── logbook │ └── meta.yaml ├── lxml │ ├── meta.yaml │ └── test_lxml.py ├── lz4 │ ├── meta.yaml │ └── test_lz4.py ├── lzma │ ├── meta.yaml │ ├── src │ │ └── pyproject.toml │ └── test_lzma.py ├── matplotlib-inline │ └── meta.yaml ├── matplotlib │ ├── README_FONTLIST.md │ ├── extras │ │ ├── Humor-Sans-1.0.ttf │ │ ├── fontlist.json │ │ └── setup.cfg │ ├── meta.yaml │ ├── patches │ │ ├── 0001-Disable-macOS-X-backend.patch │ │ ├── 0002-Disable-timer.patch │ │ ├── 0003-Hardcode-font-cache-path.patch │ │ └── 0004-WebAgg-backend.patch │ ├── test_data │ │ ├── canvas-chrome.png │ │ ├── canvas-firefox.png │ │ ├── canvas-image-affine-chrome.png │ │ ├── canvas-image-affine-firefox.png │ │ ├── canvas-image-chrome.png │ │ ├── canvas-image-firefox.png │ │ ├── canvas-math-text-chrome.png │ │ ├── canvas-math-text-firefox.png │ │ ├── canvas-polar-zoom-chrome.png │ │ ├── canvas-polar-zoom-firefox.png │ │ ├── canvas-text-rotated-chrome.png │ │ ├── canvas-text-rotated-firefox.png │ │ ├── canvas-transparency-chrome.png │ │ └── canvas-transparency-firefox.png │ ├── test_matplotlib.py │ └── test_matplotlib_backend.py ├── memory-allocator │ ├── meta.yaml │ └── test_memory_allocator.py ├── micropip │ ├── meta.yaml │ ├── test │ │ └── snowballstemmer-2.0.0-py2.py3-none-any.whl │ └── test_micropip.py ├── mmh3 │ ├── meta.yaml │ └── test_mmh3.py ├── more-itertools │ └── meta.yaml ├── mpmath │ └── meta.yaml ├── msgpack │ ├── meta.yaml │ └── test_pack.py ├── msgspec │ ├── meta.yaml │ └── test_msgspec.py ├── msprime │ ├── meta.yaml │ └── test_msprime.py ├── multidict │ ├── meta.yaml │ └── test_multidict.py ├── munch │ └── meta.yaml ├── mypy │ └── meta.yaml ├── narwhals │ ├── meta.yaml │ └── test_narwhals.py ├── ndindex │ ├── meta.yaml │ └── test_ndindex.py ├── netcdf4 │ ├── meta.yaml │ └── test_netcdf4.py ├── networkx │ ├── meta.yaml │ └── test_networkx.py ├── newick │ └── meta.yaml ├── nh3 │ ├── meta.yaml │ └── test_nh3.py ├── nlopt │ ├── extras │ │ └── setup.py │ ├── meta.yaml │ └── test_nlopt.py ├── nltk │ ├── meta.yaml │ └── test_nltk.py ├── numcodecs │ ├── meta.yaml │ ├── patches │ │ ├── fixblosc.patch │ │ └── fixzlib.patch │ └── test_numcodecs.py ├── numpy-tests │ └── meta.yaml ├── numpy │ ├── meta.yaml │ ├── patches │ │ └── 0001-TST-Prevent-import-error-when-tests-are-not-included.patch │ └── test_numpy.py ├── openai │ ├── helper_test_openai.py │ ├── meta.yaml │ └── test_openai.py ├── opencv-python │ ├── extras │ │ ├── OpenCVFindLibsGrfmt.cmake │ │ ├── build_args.sh │ │ └── detect_ffmpeg.cmake │ ├── meta.yaml │ ├── patches │ │ └── 0001-Unpin-setuptools.patch │ ├── test_data │ │ ├── baboon.png │ │ ├── baboon_canny.png │ │ ├── baboon_decolor_color_boost.png │ │ ├── baboon_decolor_grayscale.png │ │ ├── baboon_kaze.png │ │ ├── baboon_laplacian.png │ │ ├── baboon_sobel.png │ │ ├── box.png │ │ ├── box_in_scene.png │ │ ├── box_sift.png │ │ ├── chessboard.png │ │ ├── chessboard_corners.png │ │ ├── mnist.onnx │ │ ├── mnist_2.png │ │ ├── monalisa.png │ │ ├── monalisa_facedetect.png │ │ ├── mountain1.png │ │ ├── mountain2.png │ │ ├── pca.png │ │ ├── pca_result.png │ │ ├── traffic.mp4 │ │ └── traffic_optical_flow.png │ └── test_opencv_python.py ├── optlang │ ├── meta.yaml │ └── test_optlang.py ├── orjson │ ├── meta.yaml │ ├── patches │ │ └── 0001-Fix-_PyLong_AsByteArray-function-signature.patch │ └── test_orjson.py ├── osqp │ ├── meta.yaml │ └── test_osqp.py ├── packaging │ ├── meta.yaml │ └── patches │ │ └── 0001-Add-Pyodide-compatibility.patch ├── pandas │ ├── meta.yaml │ └── test_pandas.py ├── parso │ └── meta.yaml ├── patsy │ └── meta.yaml ├── pcodec │ ├── meta.yaml │ └── test_pcodec.py ├── peewee │ ├── meta.yaml │ └── test_peewee.py ├── pi-heif │ ├── meta.yaml │ ├── test_data │ │ └── tree-with-transparency.heic │ └── test_pi_heif.py ├── pillow-heif │ ├── meta.yaml │ ├── patches │ │ └── 0001-Remove-include-path-check.patch │ ├── test_data │ │ └── tree-with-transparency.heic │ └── test_pillow_heif.py ├── pkgconfig │ └── meta.yaml ├── platformdirs │ ├── meta.yaml │ └── test_platformdirs.py ├── pluggy │ └── meta.yaml ├── ply │ └── meta.yaml ├── polars │ ├── meta.yaml │ └── test_polars.py ├── pplpy │ ├── meta.yaml │ └── test_pplpy.py ├── primecountpy │ ├── meta.yaml │ └── test_primecountpy.py ├── prompt_toolkit │ └── meta.yaml ├── propcache │ └── meta.yaml ├── protobuf │ ├── meta.yaml │ └── test_protobuf.py ├── pure-eval │ └── meta.yaml ├── py │ └── meta.yaml ├── pyarrow │ ├── meta.yaml │ └── test_pyarrow.py ├── pyclipper │ ├── meta.yaml │ └── test_pyclipper.py ├── pycparser │ └── meta.yaml ├── pycryptodome │ ├── meta.yaml │ └── test_pycryptodome.py ├── pydantic │ ├── meta.yaml │ └── test_pydantic.py ├── pydantic_core │ └── meta.yaml ├── pydecimal │ ├── meta.yaml │ ├── src │ │ └── pyproject.toml │ └── test_pydecimal.py ├── pydoc_data │ ├── meta.yaml │ ├── src │ │ └── pyproject.toml │ └── test_pydoc.py ├── pyerfa │ └── meta.yaml ├── pygame-ce │ ├── meta.yaml │ └── test_pygame.py ├── pyheif │ ├── meta.yaml │ ├── test_data │ │ └── tree-with-transparency.heic │ └── test_pyheif.py ├── pyiceberg │ ├── meta.yaml │ └── test_pyiceberg.py ├── pyinstrument │ ├── meta.yaml │ └── test_pyinstrument.py ├── pylimer-tools │ ├── meta.yaml │ └── test_pylimer_tools.py ├── pynacl │ ├── meta.yaml │ └── patches │ │ └── 0001-Don-t-check-libsodium.patch ├── pyodide-http │ └── meta.yaml ├── pyodide-unix-timezones │ └── meta.yaml ├── pyparsing │ └── meta.yaml ├── pyproj │ ├── meta.yaml │ └── test_pyproj.py ├── pyrsistent │ └── meta.yaml ├── pysam │ ├── meta.yaml │ ├── patches │ │ ├── 0001-remove-darwin-check.patch │ │ ├── 0001-remove_config_library.patch │ │ └── 0001-use-emmake.patch │ ├── test_data │ │ ├── ex1.bam │ │ └── ex1.bam.bai │ └── test_pysam.py ├── pyshp │ └── meta.yaml ├── pytaglib │ ├── meta.yaml │ └── test_pytaglib.py ├── pytest-asyncio │ ├── inner_test_pytest_asyncio.py │ ├── meta.yaml │ └── test_pytest_asyncio.py ├── pytest-benchmark │ ├── meta.yaml │ ├── patches │ │ └── 0001-Remove-cpuinfo.patch │ └── test_pytest_benchmark.py ├── pytest │ ├── meta.yaml │ └── test_pytest.py ├── pytest_httpx │ └── meta.yaml ├── python-calamine │ ├── meta.yaml │ ├── test-data │ │ └── base.xlsx │ └── test_python_calamine.py ├── python-dateutil │ └── meta.yaml ├── python-flint │ ├── meta.yaml │ └── test_python_flint.py ├── python-magic │ ├── meta.yaml │ └── test_magic.py ├── python-sat │ ├── meta.yaml │ ├── patches │ │ ├── dummy_buildhpp.patch │ │ ├── force_malloc.patch │ │ └── proper_build.patch │ └── test_python_sat.py ├── python-solvespace │ ├── meta.yaml │ └── test_python_solvespace.py ├── pytz │ └── meta.yaml ├── pywavelets │ ├── meta.yaml │ └── test_pywt.py ├── pyxel │ ├── meta.yaml │ └── test_pyxel.py ├── pyxirr │ ├── meta.yaml │ └── test_pyxirr.py ├── pyyaml │ ├── meta.yaml │ └── test_pyyaml.py ├── rasterio │ ├── meta.yaml │ └── test_rasterio.py ├── rateslib │ ├── meta.yaml │ └── test_rateslib.py ├── rebound │ ├── meta.yaml │ ├── patches │ │ ├── 0001-fix-install_name.patch │ │ ├── 0002-fix-output.patch │ │ └── 0003-no-emscripten.patch │ └── test_rebound.py ├── reboundx │ ├── meta.yaml │ └── test_reboundx.py ├── referencing │ └── meta.yaml ├── regex │ ├── meta.yaml │ └── test_regex.py ├── requests │ ├── meta.yaml │ └── test_requests.py ├── retrying │ └── meta.yaml ├── rich │ └── meta.yaml ├── river │ ├── meta.yaml │ └── test_river.py ├── rpds-py │ └── meta.yaml ├── ruamel.yaml │ └── meta.yaml ├── rustworkx │ ├── meta.yaml │ └── test_rustworkx.py ├── scikit-image │ ├── meta.yaml │ ├── patches │ │ └── make-tifffile-optional.patch │ └── test_skimage.py ├── scikit-learn │ ├── meta.yaml │ └── test_scikit-learn.py ├── scipy │ ├── cmdline_test_file.py │ ├── info.md │ ├── meta.yaml │ ├── patches │ │ ├── 0001-Fix-dstevr-in-special-lapack_defs.h.patch │ │ ├── 0002-int-to-string.patch │ │ ├── 0003-gemm_-no-const.patch │ │ ├── 0004-make-int-return-values.patch │ │ ├── 0005-Fix-fitpack.patch │ │ ├── 0006-Fix-gees-calls.patch │ │ ├── 0007-MAINT-linalg-Remove-id_dist-Fortran-files.patch │ │ ├── 0008-Mark-mvndst-functions-recursive.patch │ │ ├── 0009-Make-sreorth-recursive.patch │ │ ├── 0010-Link-openblas-with-modules-that-require-f2c.patch │ │ ├── 0011-Remove-fpchec-inline-if-then-endif-constructs.patch │ │ ├── 0012-Remove-chla_transtype.patch │ │ ├── 0013-Set-wrapper-return-type-to-int.patch │ │ ├── 0014-Skip-svd_gesdd-test.patch │ │ ├── 0015-Remove-f2py-generators.patch │ │ ├── 0016-Make-sf_error_state_lib-a-static-library.patch │ │ ├── 0017-Remove-test-modules-that-fail-to-build.patch │ │ └── 0018-Fix-lapack-larfg-function-signature.patch │ ├── scipy-conftest.py │ ├── scipy-pytest.js │ └── test_scipy.py ├── screed │ └── meta.yaml ├── setuptools │ └── meta.yaml ├── shapely │ ├── meta.yaml │ └── test_shapely.py ├── simplejson │ ├── meta.yaml │ └── test_simplejson.py ├── sisl │ ├── meta.yaml │ └── test_sisl.py ├── six │ └── meta.yaml ├── smart-open │ └── meta.yaml ├── sniffio │ └── meta.yaml ├── sortedcontainers │ └── meta.yaml ├── soundfile │ ├── meta.yaml │ ├── patches │ │ ├── 0001-Compile-using-API-mode-instead-of-ABI-mode.patch │ │ └── 0001-Remove-custom-wheel-tag-logic.patch │ └── test_soundfile.py ├── soupsieve │ └── meta.yaml ├── sourmash │ ├── meta.yaml │ └── test_sourmash.py ├── soxr │ ├── meta.yaml │ ├── patches │ │ └── 0001-Fix-function-signatures.patch │ └── test_soxr.py ├── sparseqr │ ├── meta.yaml │ └── test_sparseqr.py ├── sqlalchemy │ ├── meta.yaml │ └── test_sqlalchemy.py ├── sqlite3 │ ├── meta.yaml │ ├── src │ │ └── pyproject.toml │ └── test_sqlite3.py ├── ssl │ ├── meta.yaml │ ├── src │ │ └── pyproject.toml │ └── test_ssl.py ├── stack-data │ └── meta.yaml ├── starlette │ └── meta.yaml ├── statsmodels │ ├── meta.yaml │ └── test_statsmodels.py ├── strictyaml │ └── meta.yaml ├── svgwrite │ └── meta.yaml ├── swiglpk │ ├── meta.yaml │ └── test_swiglpk.py ├── sympy │ ├── meta.yaml │ └── test_sympy.py ├── tblib │ └── meta.yaml ├── termcolor │ ├── meta.yaml │ └── test_termcolor.py ├── test │ ├── meta.yaml │ ├── src │ │ └── pyproject.toml │ └── test_test.py ├── test_packages_common.py ├── texttable │ └── meta.yaml ├── texture2ddecoder │ ├── meta.yaml │ └── test_texture2ddecoder.py ├── threadpoolctl │ └── meta.yaml ├── tiktoken │ ├── meta.yaml │ └── test_tiktoken.py ├── tomli-w │ └── meta.yaml ├── tomli │ └── meta.yaml ├── toolz │ └── meta.yaml ├── tqdm │ └── meta.yaml ├── traitlets │ └── meta.yaml ├── traits │ └── meta.yaml ├── tree-sitter-go │ ├── meta.yaml │ └── test_tree_sitter_go.py ├── tree-sitter-java │ ├── meta.yaml │ └── test_tree_sitter_java.py ├── tree-sitter-python │ ├── meta.yaml │ └── test_tree_sitter_python.py ├── tree-sitter │ ├── meta.yaml │ └── test_tree_sitter.py ├── tskit │ ├── meta.yaml │ └── test_tskit.py ├── typing-extensions │ └── meta.yaml ├── tzdata │ └── meta.yaml ├── ujson │ ├── meta.yaml │ └── test_ujson.py ├── uncertainties │ └── meta.yaml ├── unyt │ └── meta.yaml ├── urllib3 │ ├── meta.yaml │ └── test_urllib3.py ├── vega-datasets │ ├── meta.yaml │ └── test_vega_datasets.py ├── vrplib │ └── meta.yaml ├── wcwidth │ └── meta.yaml ├── webencodings │ └── meta.yaml ├── wordcloud │ ├── meta.yaml │ └── test_wordcloud.py ├── wrapt │ ├── meta.yaml │ └── test_wrapt.py ├── xarray │ ├── meta.yaml │ └── test_xarray.py ├── xgboost │ ├── meta.yaml │ ├── patches │ │ └── 0001-Fix-compilation-on-32-bit-platforms.patch │ ├── test_data │ │ └── dermatology.data │ └── test_xgboost.py ├── xlrd │ └── meta.yaml ├── xxhash │ ├── meta.yaml │ └── test_xxhash.py ├── xyzservices │ ├── meta.yaml │ └── test_xyzservices.py ├── yarl │ ├── meta.yaml │ └── test_yarl.py ├── yt │ ├── meta.yaml │ └── patches │ │ └── skip-openmp.patch ├── zarr │ ├── meta.yaml │ └── test_zarr.py ├── zengl │ ├── meta.yaml │ └── test_zengl.py ├── zfpy │ ├── meta.yaml │ ├── patches │ │ └── Modernise-packaging.patch │ └── test_zfpy.py └── zstandard │ ├── meta.yaml │ └── test_zstandard.py ├── pyproject.toml ├── requirements.txt └── tools ├── calc_diff.py ├── constraints.txt ├── copy_pyodide_runtime.sh ├── install_and_patch_emscripten.py ├── parse_build_result.py ├── prepare_pyodide_build.sh ├── sync_package.sh └── tests └── test_parse_build_result.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/package_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.github/ISSUE_TEMPLATE/package_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/comment-build-summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.github/workflows/comment-build-summary.yml -------------------------------------------------------------------------------- /.github/workflows/comment-test-summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.github/workflows/comment-test-summary.yml -------------------------------------------------------------------------------- /.github/workflows/remove-old-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.github/workflows/remove-old-artifacts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/docs/MAINTAINERS.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/environment.yml -------------------------------------------------------------------------------- /packages/Cartopy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/Cartopy/meta.yaml -------------------------------------------------------------------------------- /packages/Cartopy/test_cartopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/Cartopy/test_cartopy.py -------------------------------------------------------------------------------- /packages/Jinja2/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/Jinja2/meta.yaml -------------------------------------------------------------------------------- /packages/Jinja2/test_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/Jinja2/test_jinja2.py -------------------------------------------------------------------------------- /packages/MarkupSafe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/MarkupSafe/meta.yaml -------------------------------------------------------------------------------- /packages/Pillow/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/Pillow/meta.yaml -------------------------------------------------------------------------------- /packages/Pillow/test_pillow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/Pillow/test_pillow.py -------------------------------------------------------------------------------- /packages/PyMuPDF/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/PyMuPDF/meta.yaml -------------------------------------------------------------------------------- /packages/PyMuPDF/test_pymupdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/PyMuPDF/test_pymupdf.py -------------------------------------------------------------------------------- /packages/Pygments/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/Pygments/meta.yaml -------------------------------------------------------------------------------- /packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/README.md -------------------------------------------------------------------------------- /packages/RobotRaconteur/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/RobotRaconteur/meta.yaml -------------------------------------------------------------------------------- /packages/RobotRaconteur/test_robotraconteur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/RobotRaconteur/test_robotraconteur.py -------------------------------------------------------------------------------- /packages/affine/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/affine/meta.yaml -------------------------------------------------------------------------------- /packages/aiohappyeyeballs/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/aiohappyeyeballs/meta.yaml -------------------------------------------------------------------------------- /packages/aiohttp/aiohttp_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/aiohttp/aiohttp_patch.py -------------------------------------------------------------------------------- /packages/aiohttp/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/aiohttp/meta.yaml -------------------------------------------------------------------------------- /packages/aiohttp/test_aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/aiohttp/test_aiohttp.py -------------------------------------------------------------------------------- /packages/aiosignal/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/aiosignal/meta.yaml -------------------------------------------------------------------------------- /packages/altair/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/altair/meta.yaml -------------------------------------------------------------------------------- /packages/altair/test_altair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/altair/test_altair.py -------------------------------------------------------------------------------- /packages/annotated-types/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/annotated-types/meta.yaml -------------------------------------------------------------------------------- /packages/anyio/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/anyio/meta.yaml -------------------------------------------------------------------------------- /packages/apsw/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/apsw/meta.yaml -------------------------------------------------------------------------------- /packages/apsw/test_apsw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/apsw/test_apsw.py -------------------------------------------------------------------------------- /packages/argon2-cffi-bindings/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/argon2-cffi-bindings/meta.yaml -------------------------------------------------------------------------------- /packages/argon2-cffi/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/argon2-cffi/meta.yaml -------------------------------------------------------------------------------- /packages/argon2-cffi/patches/0001-Added-platform-check-for-parallelism-since-WASM-does.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/argon2-cffi/patches/0001-Added-platform-check-for-parallelism-since-WASM-does.patch -------------------------------------------------------------------------------- /packages/argon2-cffi/test_argon2-cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/argon2-cffi/test_argon2-cffi.py -------------------------------------------------------------------------------- /packages/arro3-compute/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/arro3-compute/meta.yaml -------------------------------------------------------------------------------- /packages/arro3-core/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/arro3-core/meta.yaml -------------------------------------------------------------------------------- /packages/arro3-core/test_arro3_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/arro3-core/test_arro3_core.py -------------------------------------------------------------------------------- /packages/arro3-io/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/arro3-io/meta.yaml -------------------------------------------------------------------------------- /packages/asciitree/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/asciitree/meta.yaml -------------------------------------------------------------------------------- /packages/astropy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/astropy/meta.yaml -------------------------------------------------------------------------------- /packages/astropy/test_astropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/astropy/test_astropy.py -------------------------------------------------------------------------------- /packages/astropy_iers_data/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/astropy_iers_data/meta.yaml -------------------------------------------------------------------------------- /packages/asttokens/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/asttokens/meta.yaml -------------------------------------------------------------------------------- /packages/async-timeout/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/async-timeout/meta.yaml -------------------------------------------------------------------------------- /packages/atomicwrites/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/atomicwrites/meta.yaml -------------------------------------------------------------------------------- /packages/attrs/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/attrs/meta.yaml -------------------------------------------------------------------------------- /packages/audioop-lts/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/audioop-lts/meta.yaml -------------------------------------------------------------------------------- /packages/audioop-lts/test_audioop_lts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/audioop-lts/test_audioop_lts.py -------------------------------------------------------------------------------- /packages/autograd/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/autograd/meta.yaml -------------------------------------------------------------------------------- /packages/awkward-cpp/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/awkward-cpp/meta.yaml -------------------------------------------------------------------------------- /packages/awkward-cpp/test_awkward_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/awkward-cpp/test_awkward_cpp.py -------------------------------------------------------------------------------- /packages/b2d/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/b2d/meta.yaml -------------------------------------------------------------------------------- /packages/b2d/test_pyb2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/b2d/test_pyb2d.py -------------------------------------------------------------------------------- /packages/bcrypt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bcrypt/meta.yaml -------------------------------------------------------------------------------- /packages/bcrypt/test_bcrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bcrypt/test_bcrypt.py -------------------------------------------------------------------------------- /packages/beautifulsoup4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/beautifulsoup4/meta.yaml -------------------------------------------------------------------------------- /packages/bilby.cython/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bilby.cython/meta.yaml -------------------------------------------------------------------------------- /packages/bilby.cython/test_bilby_cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bilby.cython/test_bilby_cython.py -------------------------------------------------------------------------------- /packages/biopython/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/biopython/meta.yaml -------------------------------------------------------------------------------- /packages/bitarray/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bitarray/meta.yaml -------------------------------------------------------------------------------- /packages/bitarray/test_bitarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bitarray/test_bitarray.py -------------------------------------------------------------------------------- /packages/bitstring/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bitstring/meta.yaml -------------------------------------------------------------------------------- /packages/bitstring/test_bitstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bitstring/test_bitstring.py -------------------------------------------------------------------------------- /packages/bleach/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bleach/meta.yaml -------------------------------------------------------------------------------- /packages/blosc2/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/blosc2/meta.yaml -------------------------------------------------------------------------------- /packages/blosc2/test_blosc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/blosc2/test_blosc2.py -------------------------------------------------------------------------------- /packages/bokeh/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bokeh/meta.yaml -------------------------------------------------------------------------------- /packages/bokeh/test_bokeh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/bokeh/test_bokeh.py -------------------------------------------------------------------------------- /packages/boost-histogram/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/boost-histogram/meta.yaml -------------------------------------------------------------------------------- /packages/boost-histogram/test_boost_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/boost-histogram/test_boost_histogram.py -------------------------------------------------------------------------------- /packages/brotli/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/brotli/meta.yaml -------------------------------------------------------------------------------- /packages/brotli/test_brotli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/brotli/test_brotli.py -------------------------------------------------------------------------------- /packages/cachetools/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cachetools/meta.yaml -------------------------------------------------------------------------------- /packages/casadi/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/casadi/meta.yaml -------------------------------------------------------------------------------- /packages/casadi/test_casadi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/casadi/test_casadi.py -------------------------------------------------------------------------------- /packages/cbor-diag/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cbor-diag/meta.yaml -------------------------------------------------------------------------------- /packages/cbor-diag/test_cbor_diag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cbor-diag/test_cbor_diag.py -------------------------------------------------------------------------------- /packages/certifi/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/certifi/meta.yaml -------------------------------------------------------------------------------- /packages/certifi/test_certifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/certifi/test_certifi.py -------------------------------------------------------------------------------- /packages/cffi/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cffi/meta.yaml -------------------------------------------------------------------------------- /packages/cffi/test_cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cffi/test_cffi.py -------------------------------------------------------------------------------- /packages/cffi_example/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cffi_example/meta.yaml -------------------------------------------------------------------------------- /packages/cffi_example/test_cffi_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cffi_example/test_cffi_example.py -------------------------------------------------------------------------------- /packages/cftime/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cftime/meta.yaml -------------------------------------------------------------------------------- /packages/charset-normalizer/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/charset-normalizer/meta.yaml -------------------------------------------------------------------------------- /packages/clarabel/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/clarabel/meta.yaml -------------------------------------------------------------------------------- /packages/clarabel/patches/0001-Update-faer-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/clarabel/patches/0001-Update-faer-version.patch -------------------------------------------------------------------------------- /packages/clarabel/test_clarabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/clarabel/test_clarabel.py -------------------------------------------------------------------------------- /packages/click/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/click/meta.yaml -------------------------------------------------------------------------------- /packages/cligj/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cligj/meta.yaml -------------------------------------------------------------------------------- /packages/clingo/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/clingo/meta.yaml -------------------------------------------------------------------------------- /packages/clingo/test_clingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/clingo/test_clingo.py -------------------------------------------------------------------------------- /packages/cloudpickle/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cloudpickle/meta.yaml -------------------------------------------------------------------------------- /packages/cloudpickle/test_cloudpickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cloudpickle/test_cloudpickle.py -------------------------------------------------------------------------------- /packages/cmyt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cmyt/meta.yaml -------------------------------------------------------------------------------- /packages/cobs/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cobs/meta.yaml -------------------------------------------------------------------------------- /packages/cobs/test_cobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cobs/test_cobs.py -------------------------------------------------------------------------------- /packages/colorspacious/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/colorspacious/meta.yaml -------------------------------------------------------------------------------- /packages/contourpy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/contourpy/meta.yaml -------------------------------------------------------------------------------- /packages/contourpy/test_contourpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/contourpy/test_contourpy.py -------------------------------------------------------------------------------- /packages/coolprop/extras/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/coolprop/extras/pyproject.toml -------------------------------------------------------------------------------- /packages/coolprop/extras/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/coolprop/extras/setup.py -------------------------------------------------------------------------------- /packages/coolprop/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/coolprop/meta.yaml -------------------------------------------------------------------------------- /packages/coolprop/test_coolprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/coolprop/test_coolprop.py -------------------------------------------------------------------------------- /packages/coverage/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/coverage/meta.yaml -------------------------------------------------------------------------------- /packages/cramjam/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cramjam/meta.yaml -------------------------------------------------------------------------------- /packages/cramjam/test_cramjam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cramjam/test_cramjam.py -------------------------------------------------------------------------------- /packages/crc32c/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/crc32c/meta.yaml -------------------------------------------------------------------------------- /packages/crc32c/test_crc32c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/crc32c/test_crc32c.py -------------------------------------------------------------------------------- /packages/cryptography/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cryptography/meta.yaml -------------------------------------------------------------------------------- /packages/cryptography/patches/0001-Tell-rust-lang-libc-that-time_t-is-64-bits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cryptography/patches/0001-Tell-rust-lang-libc-that-time_t-is-64-bits.patch -------------------------------------------------------------------------------- /packages/cryptography/test_cryptography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cryptography/test_cryptography.py -------------------------------------------------------------------------------- /packages/css-inline/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/css-inline/meta.yaml -------------------------------------------------------------------------------- /packages/css-inline/test_css_inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/css-inline/test_css_inline.py -------------------------------------------------------------------------------- /packages/cssselect/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cssselect/meta.yaml -------------------------------------------------------------------------------- /packages/cvxpy-base/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cvxpy-base/meta.yaml -------------------------------------------------------------------------------- /packages/cvxpy-base/test_cvxpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cvxpy-base/test_cvxpy.py -------------------------------------------------------------------------------- /packages/cycler/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cycler/meta.yaml -------------------------------------------------------------------------------- /packages/cysignals/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cysignals/meta.yaml -------------------------------------------------------------------------------- /packages/cysignals/patches/0001-src-cysignals-implementation.c-EMSCRIPTEN-Do-not-use.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cysignals/patches/0001-src-cysignals-implementation.c-EMSCRIPTEN-Do-not-use.patch -------------------------------------------------------------------------------- /packages/cytoolz/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/cytoolz/meta.yaml -------------------------------------------------------------------------------- /packages/decorator/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/decorator/meta.yaml -------------------------------------------------------------------------------- /packages/demes/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/demes/meta.yaml -------------------------------------------------------------------------------- /packages/deprecation/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/deprecation/meta.yaml -------------------------------------------------------------------------------- /packages/diskcache/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/diskcache/meta.yaml -------------------------------------------------------------------------------- /packages/distlib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/distlib/meta.yaml -------------------------------------------------------------------------------- /packages/distro/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/distro/meta.yaml -------------------------------------------------------------------------------- /packages/docutils/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/docutils/meta.yaml -------------------------------------------------------------------------------- /packages/donfig/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/donfig/meta.yaml -------------------------------------------------------------------------------- /packages/duckdb/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/duckdb/meta.yaml -------------------------------------------------------------------------------- /packages/duckdb/test_duckdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/duckdb/test_duckdb.py -------------------------------------------------------------------------------- /packages/ewah_bool_utils/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ewah_bool_utils/meta.yaml -------------------------------------------------------------------------------- /packages/exceptiongroup/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/exceptiongroup/meta.yaml -------------------------------------------------------------------------------- /packages/executing/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/executing/meta.yaml -------------------------------------------------------------------------------- /packages/fastapi/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fastapi/asgi.py -------------------------------------------------------------------------------- /packages/fastapi/fastapi_test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fastapi/fastapi_test_app.py -------------------------------------------------------------------------------- /packages/fastapi/fastapi_test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fastapi/fastapi_test_helper.py -------------------------------------------------------------------------------- /packages/fastapi/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fastapi/meta.yaml -------------------------------------------------------------------------------- /packages/fastapi/test_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fastapi/test_fastapi.py -------------------------------------------------------------------------------- /packages/fastcan/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fastcan/meta.yaml -------------------------------------------------------------------------------- /packages/fastcan/test_fastcan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fastcan/test_fastcan.py -------------------------------------------------------------------------------- /packages/fastparquet/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fastparquet/meta.yaml -------------------------------------------------------------------------------- /packages/fastparquet/test_fastparquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fastparquet/test_fastparquet.py -------------------------------------------------------------------------------- /packages/fiona/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fiona/meta.yaml -------------------------------------------------------------------------------- /packages/fiona/test_fiona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fiona/test_fiona.py -------------------------------------------------------------------------------- /packages/fonttools/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fonttools/meta.yaml -------------------------------------------------------------------------------- /packages/freesasa/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/freesasa/meta.yaml -------------------------------------------------------------------------------- /packages/frozenlist/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/frozenlist/meta.yaml -------------------------------------------------------------------------------- /packages/frozenlist/test_frozenlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/frozenlist/test_frozenlist.py -------------------------------------------------------------------------------- /packages/fsspec/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/fsspec/meta.yaml -------------------------------------------------------------------------------- /packages/future/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/future/meta.yaml -------------------------------------------------------------------------------- /packages/galpy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/galpy/meta.yaml -------------------------------------------------------------------------------- /packages/galpy/test_galpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/galpy/test_galpy.py -------------------------------------------------------------------------------- /packages/gensim/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/gensim/meta.yaml -------------------------------------------------------------------------------- /packages/gensim/patches/0001-Avoid-signature-mismatch-in-sdot-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/gensim/patches/0001-Avoid-signature-mismatch-in-sdot-detection.patch -------------------------------------------------------------------------------- /packages/geopandas/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/geopandas/meta.yaml -------------------------------------------------------------------------------- /packages/geopandas/test_geopandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/geopandas/test_geopandas.py -------------------------------------------------------------------------------- /packages/gmpy2/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/gmpy2/meta.yaml -------------------------------------------------------------------------------- /packages/gmpy2/patches/gmpy2-2.1.5-py312.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/gmpy2/patches/gmpy2-2.1.5-py312.patch -------------------------------------------------------------------------------- /packages/gmpy2/test_gmpy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/gmpy2/test_gmpy2.py -------------------------------------------------------------------------------- /packages/gsw/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/gsw/meta.yaml -------------------------------------------------------------------------------- /packages/h11/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/h11/meta.yaml -------------------------------------------------------------------------------- /packages/h3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/h3/meta.yaml -------------------------------------------------------------------------------- /packages/h3/test_h3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/h3/test_h3.py -------------------------------------------------------------------------------- /packages/h5py/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/h5py/meta.yaml -------------------------------------------------------------------------------- /packages/h5py/patches/0001-Fix-incompatible-pointer-type.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/h5py/patches/0001-Fix-incompatible-pointer-type.patch -------------------------------------------------------------------------------- /packages/h5py/patches/configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/h5py/patches/configure.patch -------------------------------------------------------------------------------- /packages/h5py/test_h5py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/h5py/test_h5py.py -------------------------------------------------------------------------------- /packages/hashlib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/hashlib/meta.yaml -------------------------------------------------------------------------------- /packages/hashlib/src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/hashlib/src/pyproject.toml -------------------------------------------------------------------------------- /packages/hashlib/test_hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/hashlib/test_hashlib.py -------------------------------------------------------------------------------- /packages/highspy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/highspy/meta.yaml -------------------------------------------------------------------------------- /packages/html5lib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/html5lib/meta.yaml -------------------------------------------------------------------------------- /packages/httpcore/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/httpcore/meta.yaml -------------------------------------------------------------------------------- /packages/httpx/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/httpx/meta.yaml -------------------------------------------------------------------------------- /packages/httpx/test_httpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/httpx/test_httpx.py -------------------------------------------------------------------------------- /packages/idna/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/idna/meta.yaml -------------------------------------------------------------------------------- /packages/idna/test_idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/idna/test_idna.py -------------------------------------------------------------------------------- /packages/igraph/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/igraph/meta.yaml -------------------------------------------------------------------------------- /packages/imageio/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/imageio/meta.yaml -------------------------------------------------------------------------------- /packages/imageio/test_imageio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/imageio/test_imageio.py -------------------------------------------------------------------------------- /packages/imgui-bundle/demo/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/imgui-bundle/demo/Readme.md -------------------------------------------------------------------------------- /packages/imgui-bundle/demo/demo_imgui_bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/imgui-bundle/demo/demo_imgui_bundle.html -------------------------------------------------------------------------------- /packages/imgui-bundle/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/imgui-bundle/meta.yaml -------------------------------------------------------------------------------- /packages/imgui-bundle/test_imgui_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/imgui-bundle/test_imgui_bundle.py -------------------------------------------------------------------------------- /packages/iminuit/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/iminuit/meta.yaml -------------------------------------------------------------------------------- /packages/iminuit/test_iminuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/iminuit/test_iminuit.py -------------------------------------------------------------------------------- /packages/iniconfig/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/iniconfig/meta.yaml -------------------------------------------------------------------------------- /packages/inspice/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/inspice/meta.yaml -------------------------------------------------------------------------------- /packages/inspice/test_inspice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/inspice/test_inspice.py -------------------------------------------------------------------------------- /packages/ipython/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ipython/meta.yaml -------------------------------------------------------------------------------- /packages/ipython/test_ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ipython/test_ipython.py -------------------------------------------------------------------------------- /packages/jedi/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jedi/meta.yaml -------------------------------------------------------------------------------- /packages/jedi/test_jedi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jedi/test_jedi.py -------------------------------------------------------------------------------- /packages/jiter/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jiter/meta.yaml -------------------------------------------------------------------------------- /packages/jiter/test_jiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jiter/test_jiter.py -------------------------------------------------------------------------------- /packages/joblib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/joblib/meta.yaml -------------------------------------------------------------------------------- /packages/joblib/test_joblib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/joblib/test_joblib.py -------------------------------------------------------------------------------- /packages/jsonpatch/jsonpatch_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonpatch/jsonpatch_tests.py -------------------------------------------------------------------------------- /packages/jsonpatch/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonpatch/meta.yaml -------------------------------------------------------------------------------- /packages/jsonpatch/test_jsonpatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonpatch/test_jsonpatch.py -------------------------------------------------------------------------------- /packages/jsonpatch/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonpatch/tests.json -------------------------------------------------------------------------------- /packages/jsonpointer/json_pointer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonpointer/json_pointer_tests.py -------------------------------------------------------------------------------- /packages/jsonpointer/jsonpointer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonpointer/jsonpointer_tests.py -------------------------------------------------------------------------------- /packages/jsonpointer/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonpointer/meta.yaml -------------------------------------------------------------------------------- /packages/jsonpointer/test_jsonpointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonpointer/test_jsonpointer.py -------------------------------------------------------------------------------- /packages/jsonschema/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonschema/meta.yaml -------------------------------------------------------------------------------- /packages/jsonschema_specifications/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/jsonschema_specifications/meta.yaml -------------------------------------------------------------------------------- /packages/kiwisolver/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/kiwisolver/meta.yaml -------------------------------------------------------------------------------- /packages/lakers-python/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lakers-python/meta.yaml -------------------------------------------------------------------------------- /packages/lakers-python/test_lakers_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lakers-python/test_lakers_python.py -------------------------------------------------------------------------------- /packages/lazy-object-proxy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lazy-object-proxy/meta.yaml -------------------------------------------------------------------------------- /packages/lazy-object-proxy/test_lazy_object_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lazy-object-proxy/test_lazy_object_proxy.py -------------------------------------------------------------------------------- /packages/lazy_loader/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lazy_loader/meta.yaml -------------------------------------------------------------------------------- /packages/libboost/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libboost/meta.yaml -------------------------------------------------------------------------------- /packages/libcst/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libcst/meta.yaml -------------------------------------------------------------------------------- /packages/libcst/test_libcst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libcst/test_libcst.py -------------------------------------------------------------------------------- /packages/libde265/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libde265/meta.yaml -------------------------------------------------------------------------------- /packages/libf2c/extras/make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libf2c/extras/make.inc -------------------------------------------------------------------------------- /packages/libf2c/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libf2c/meta.yaml -------------------------------------------------------------------------------- /packages/libf2c/patches/0001-fix-arith.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libf2c/patches/0001-fix-arith.h.patch -------------------------------------------------------------------------------- /packages/libf2c/patches/0002-fix-f2clibs-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libf2c/patches/0002-fix-f2clibs-build.patch -------------------------------------------------------------------------------- /packages/libf2c/patches/0003-remove-redundant-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libf2c/patches/0003-remove-redundant-symbols.patch -------------------------------------------------------------------------------- /packages/libf2c/patches/0004-correct-return-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libf2c/patches/0004-correct-return-types.patch -------------------------------------------------------------------------------- /packages/libf2c/patches/0005-Remove-symbols-defined-in-OpenBLAS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libf2c/patches/0005-Remove-symbols-defined-in-OpenBLAS.patch -------------------------------------------------------------------------------- /packages/libf2c/patches/0006-adjust-ld-ar-ranlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libf2c/patches/0006-adjust-ld-ar-ranlib.patch -------------------------------------------------------------------------------- /packages/libf2c/patches/0007-add-singlecomplex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libf2c/patches/0007-add-singlecomplex.patch -------------------------------------------------------------------------------- /packages/libffmpeg/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libffmpeg/meta.yaml -------------------------------------------------------------------------------- /packages/libflac/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libflac/meta.yaml -------------------------------------------------------------------------------- /packages/libflint/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libflint/meta.yaml -------------------------------------------------------------------------------- /packages/libgdal/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libgdal/meta.yaml -------------------------------------------------------------------------------- /packages/libgeos/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libgeos/meta.yaml -------------------------------------------------------------------------------- /packages/libglpk/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libglpk/meta.yaml -------------------------------------------------------------------------------- /packages/libgmp/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libgmp/meta.yaml -------------------------------------------------------------------------------- /packages/libgsl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libgsl/meta.yaml -------------------------------------------------------------------------------- /packages/libhdf5/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libhdf5/meta.yaml -------------------------------------------------------------------------------- /packages/libhdf5/patches/0001-Fix-incompatible-pointer-type.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libhdf5/patches/0001-Fix-incompatible-pointer-type.patch -------------------------------------------------------------------------------- /packages/libhdf5/patches/0001-Hardcode-float-precision.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libhdf5/patches/0001-Hardcode-float-precision.patch -------------------------------------------------------------------------------- /packages/libhdf5/settings/H5Tinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libhdf5/settings/H5Tinit.c -------------------------------------------------------------------------------- /packages/libhdf5/settings/H5lib_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libhdf5/settings/H5lib_settings.c -------------------------------------------------------------------------------- /packages/libheif/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libheif/meta.yaml -------------------------------------------------------------------------------- /packages/libiconv/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libiconv/meta.yaml -------------------------------------------------------------------------------- /packages/liblzma/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/liblzma/meta.yaml -------------------------------------------------------------------------------- /packages/libmagic/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libmagic/meta.yaml -------------------------------------------------------------------------------- /packages/libmagic/patches/0001-Hardcode-magic.mgc-location.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libmagic/patches/0001-Hardcode-magic.mgc-location.patch -------------------------------------------------------------------------------- /packages/libmp3lame/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libmp3lame/meta.yaml -------------------------------------------------------------------------------- /packages/libmpc/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libmpc/meta.yaml -------------------------------------------------------------------------------- /packages/libmpfr/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libmpfr/meta.yaml -------------------------------------------------------------------------------- /packages/libnetcdf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libnetcdf/meta.yaml -------------------------------------------------------------------------------- /packages/libnetcdf/patches/0001-disable-hdf5-configure-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libnetcdf/patches/0001-disable-hdf5-configure-tests.patch -------------------------------------------------------------------------------- /packages/libngspice/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libngspice/meta.yaml -------------------------------------------------------------------------------- /packages/libngspice/patches/0001-keep-alive-API-functions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libngspice/patches/0001-keep-alive-API-functions.patch -------------------------------------------------------------------------------- /packages/libngspice/patches/0002-fix-hicum2-extern-c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libngspice/patches/0002-fix-hicum2-extern-c.patch -------------------------------------------------------------------------------- /packages/libngspice/patches/0003-fix-verilog-install-hook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libngspice/patches/0003-fix-verilog-install-hook.patch -------------------------------------------------------------------------------- /packages/libopenblas/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libopenblas/meta.yaml -------------------------------------------------------------------------------- /packages/libopenblas/patches/0001-Add-Wno-return-type-flag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libopenblas/patches/0001-Add-Wno-return-type-flag.patch -------------------------------------------------------------------------------- /packages/libopenblas/patches/0002-Align-xerbla_array-signature-with-scipy-expectation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libopenblas/patches/0002-Align-xerbla_array-signature-with-scipy-expectation.patch -------------------------------------------------------------------------------- /packages/libopenblas/patches/0003-Skip-linktest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libopenblas/patches/0003-Skip-linktest.patch -------------------------------------------------------------------------------- /packages/libopenssl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libopenssl/meta.yaml -------------------------------------------------------------------------------- /packages/libopus/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libopus/meta.yaml -------------------------------------------------------------------------------- /packages/libppl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libppl/meta.yaml -------------------------------------------------------------------------------- /packages/libppl/patches/clang5-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libppl/patches/clang5-support.patch -------------------------------------------------------------------------------- /packages/libprimecount/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libprimecount/meta.yaml -------------------------------------------------------------------------------- /packages/libprimesieve/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libprimesieve/meta.yaml -------------------------------------------------------------------------------- /packages/libproj/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libproj/meta.yaml -------------------------------------------------------------------------------- /packages/libproj/patches/0001-stod-empty-zero.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libproj/patches/0001-stod-empty-zero.patch -------------------------------------------------------------------------------- /packages/libsndfile/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libsndfile/meta.yaml -------------------------------------------------------------------------------- /packages/libsuitesparse/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libsuitesparse/meta.yaml -------------------------------------------------------------------------------- /packages/libsuitesparse/patches/0001-Remove-non-essential-build-targets.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libsuitesparse/patches/0001-Remove-non-essential-build-targets.patch -------------------------------------------------------------------------------- /packages/libtaglib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libtaglib/meta.yaml -------------------------------------------------------------------------------- /packages/libtiff/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libtiff/meta.yaml -------------------------------------------------------------------------------- /packages/libwebp/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libwebp/meta.yaml -------------------------------------------------------------------------------- /packages/libxml/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libxml/meta.yaml -------------------------------------------------------------------------------- /packages/libxslt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libxslt/meta.yaml -------------------------------------------------------------------------------- /packages/libyaml/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libyaml/meta.yaml -------------------------------------------------------------------------------- /packages/libzfp/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libzfp/meta.yaml -------------------------------------------------------------------------------- /packages/libzlib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/libzlib/meta.yaml -------------------------------------------------------------------------------- /packages/lightgbm/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lightgbm/meta.yaml -------------------------------------------------------------------------------- /packages/lightgbm/test_lightgbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lightgbm/test_lightgbm.py -------------------------------------------------------------------------------- /packages/logbook/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/logbook/meta.yaml -------------------------------------------------------------------------------- /packages/lxml/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lxml/meta.yaml -------------------------------------------------------------------------------- /packages/lxml/test_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lxml/test_lxml.py -------------------------------------------------------------------------------- /packages/lz4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lz4/meta.yaml -------------------------------------------------------------------------------- /packages/lz4/test_lz4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lz4/test_lz4.py -------------------------------------------------------------------------------- /packages/lzma/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lzma/meta.yaml -------------------------------------------------------------------------------- /packages/lzma/src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lzma/src/pyproject.toml -------------------------------------------------------------------------------- /packages/lzma/test_lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/lzma/test_lzma.py -------------------------------------------------------------------------------- /packages/matplotlib-inline/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib-inline/meta.yaml -------------------------------------------------------------------------------- /packages/matplotlib/README_FONTLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/README_FONTLIST.md -------------------------------------------------------------------------------- /packages/matplotlib/extras/Humor-Sans-1.0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/extras/Humor-Sans-1.0.ttf -------------------------------------------------------------------------------- /packages/matplotlib/extras/fontlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/extras/fontlist.json -------------------------------------------------------------------------------- /packages/matplotlib/extras/setup.cfg: -------------------------------------------------------------------------------- 1 | [rc_options] 2 | backend=webagg 3 | 4 | [libs] 5 | system_freetype = true 6 | -------------------------------------------------------------------------------- /packages/matplotlib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/meta.yaml -------------------------------------------------------------------------------- /packages/matplotlib/patches/0001-Disable-macOS-X-backend.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/patches/0001-Disable-macOS-X-backend.patch -------------------------------------------------------------------------------- /packages/matplotlib/patches/0002-Disable-timer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/patches/0002-Disable-timer.patch -------------------------------------------------------------------------------- /packages/matplotlib/patches/0003-Hardcode-font-cache-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/patches/0003-Hardcode-font-cache-path.patch -------------------------------------------------------------------------------- /packages/matplotlib/patches/0004-WebAgg-backend.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/patches/0004-WebAgg-backend.patch -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-chrome.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-firefox.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-image-affine-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-image-affine-chrome.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-image-affine-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-image-affine-firefox.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-image-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-image-chrome.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-image-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-image-firefox.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-math-text-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-math-text-chrome.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-math-text-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-math-text-firefox.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-polar-zoom-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-polar-zoom-chrome.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-polar-zoom-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-polar-zoom-firefox.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-text-rotated-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-text-rotated-chrome.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-text-rotated-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-text-rotated-firefox.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-transparency-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-transparency-chrome.png -------------------------------------------------------------------------------- /packages/matplotlib/test_data/canvas-transparency-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_data/canvas-transparency-firefox.png -------------------------------------------------------------------------------- /packages/matplotlib/test_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_matplotlib.py -------------------------------------------------------------------------------- /packages/matplotlib/test_matplotlib_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/matplotlib/test_matplotlib_backend.py -------------------------------------------------------------------------------- /packages/memory-allocator/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/memory-allocator/meta.yaml -------------------------------------------------------------------------------- /packages/memory-allocator/test_memory_allocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/memory-allocator/test_memory_allocator.py -------------------------------------------------------------------------------- /packages/micropip/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/micropip/meta.yaml -------------------------------------------------------------------------------- /packages/micropip/test/snowballstemmer-2.0.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/micropip/test/snowballstemmer-2.0.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /packages/micropip/test_micropip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/micropip/test_micropip.py -------------------------------------------------------------------------------- /packages/mmh3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/mmh3/meta.yaml -------------------------------------------------------------------------------- /packages/mmh3/test_mmh3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/mmh3/test_mmh3.py -------------------------------------------------------------------------------- /packages/more-itertools/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/more-itertools/meta.yaml -------------------------------------------------------------------------------- /packages/mpmath/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/mpmath/meta.yaml -------------------------------------------------------------------------------- /packages/msgpack/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/msgpack/meta.yaml -------------------------------------------------------------------------------- /packages/msgpack/test_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/msgpack/test_pack.py -------------------------------------------------------------------------------- /packages/msgspec/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/msgspec/meta.yaml -------------------------------------------------------------------------------- /packages/msgspec/test_msgspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/msgspec/test_msgspec.py -------------------------------------------------------------------------------- /packages/msprime/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/msprime/meta.yaml -------------------------------------------------------------------------------- /packages/msprime/test_msprime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/msprime/test_msprime.py -------------------------------------------------------------------------------- /packages/multidict/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/multidict/meta.yaml -------------------------------------------------------------------------------- /packages/multidict/test_multidict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/multidict/test_multidict.py -------------------------------------------------------------------------------- /packages/munch/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/munch/meta.yaml -------------------------------------------------------------------------------- /packages/mypy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/mypy/meta.yaml -------------------------------------------------------------------------------- /packages/narwhals/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/narwhals/meta.yaml -------------------------------------------------------------------------------- /packages/narwhals/test_narwhals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/narwhals/test_narwhals.py -------------------------------------------------------------------------------- /packages/ndindex/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ndindex/meta.yaml -------------------------------------------------------------------------------- /packages/ndindex/test_ndindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ndindex/test_ndindex.py -------------------------------------------------------------------------------- /packages/netcdf4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/netcdf4/meta.yaml -------------------------------------------------------------------------------- /packages/netcdf4/test_netcdf4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/netcdf4/test_netcdf4.py -------------------------------------------------------------------------------- /packages/networkx/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/networkx/meta.yaml -------------------------------------------------------------------------------- /packages/networkx/test_networkx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/networkx/test_networkx.py -------------------------------------------------------------------------------- /packages/newick/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/newick/meta.yaml -------------------------------------------------------------------------------- /packages/nh3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/nh3/meta.yaml -------------------------------------------------------------------------------- /packages/nh3/test_nh3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/nh3/test_nh3.py -------------------------------------------------------------------------------- /packages/nlopt/extras/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/nlopt/extras/setup.py -------------------------------------------------------------------------------- /packages/nlopt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/nlopt/meta.yaml -------------------------------------------------------------------------------- /packages/nlopt/test_nlopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/nlopt/test_nlopt.py -------------------------------------------------------------------------------- /packages/nltk/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/nltk/meta.yaml -------------------------------------------------------------------------------- /packages/nltk/test_nltk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/nltk/test_nltk.py -------------------------------------------------------------------------------- /packages/numcodecs/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/numcodecs/meta.yaml -------------------------------------------------------------------------------- /packages/numcodecs/patches/fixblosc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/numcodecs/patches/fixblosc.patch -------------------------------------------------------------------------------- /packages/numcodecs/patches/fixzlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/numcodecs/patches/fixzlib.patch -------------------------------------------------------------------------------- /packages/numcodecs/test_numcodecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/numcodecs/test_numcodecs.py -------------------------------------------------------------------------------- /packages/numpy-tests/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/numpy-tests/meta.yaml -------------------------------------------------------------------------------- /packages/numpy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/numpy/meta.yaml -------------------------------------------------------------------------------- /packages/numpy/patches/0001-TST-Prevent-import-error-when-tests-are-not-included.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/numpy/patches/0001-TST-Prevent-import-error-when-tests-are-not-included.patch -------------------------------------------------------------------------------- /packages/numpy/test_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/numpy/test_numpy.py -------------------------------------------------------------------------------- /packages/openai/helper_test_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/openai/helper_test_openai.py -------------------------------------------------------------------------------- /packages/openai/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/openai/meta.yaml -------------------------------------------------------------------------------- /packages/openai/test_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/openai/test_openai.py -------------------------------------------------------------------------------- /packages/opencv-python/extras/OpenCVFindLibsGrfmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/extras/OpenCVFindLibsGrfmt.cmake -------------------------------------------------------------------------------- /packages/opencv-python/extras/build_args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/extras/build_args.sh -------------------------------------------------------------------------------- /packages/opencv-python/extras/detect_ffmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/extras/detect_ffmpeg.cmake -------------------------------------------------------------------------------- /packages/opencv-python/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/meta.yaml -------------------------------------------------------------------------------- /packages/opencv-python/patches/0001-Unpin-setuptools.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/patches/0001-Unpin-setuptools.patch -------------------------------------------------------------------------------- /packages/opencv-python/test_data/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/baboon.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/baboon_canny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/baboon_canny.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/baboon_decolor_color_boost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/baboon_decolor_color_boost.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/baboon_decolor_grayscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/baboon_decolor_grayscale.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/baboon_kaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/baboon_kaze.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/baboon_laplacian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/baboon_laplacian.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/baboon_sobel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/baboon_sobel.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/box.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/box_in_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/box_in_scene.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/box_sift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/box_sift.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/chessboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/chessboard.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/chessboard_corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/chessboard_corners.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/mnist.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/mnist.onnx -------------------------------------------------------------------------------- /packages/opencv-python/test_data/mnist_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/mnist_2.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/monalisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/monalisa.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/monalisa_facedetect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/monalisa_facedetect.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/mountain1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/mountain1.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/mountain2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/mountain2.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/pca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/pca.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/pca_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/pca_result.png -------------------------------------------------------------------------------- /packages/opencv-python/test_data/traffic.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/traffic.mp4 -------------------------------------------------------------------------------- /packages/opencv-python/test_data/traffic_optical_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_data/traffic_optical_flow.png -------------------------------------------------------------------------------- /packages/opencv-python/test_opencv_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/opencv-python/test_opencv_python.py -------------------------------------------------------------------------------- /packages/optlang/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/optlang/meta.yaml -------------------------------------------------------------------------------- /packages/optlang/test_optlang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/optlang/test_optlang.py -------------------------------------------------------------------------------- /packages/orjson/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/orjson/meta.yaml -------------------------------------------------------------------------------- /packages/orjson/patches/0001-Fix-_PyLong_AsByteArray-function-signature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/orjson/patches/0001-Fix-_PyLong_AsByteArray-function-signature.patch -------------------------------------------------------------------------------- /packages/orjson/test_orjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/orjson/test_orjson.py -------------------------------------------------------------------------------- /packages/osqp/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/osqp/meta.yaml -------------------------------------------------------------------------------- /packages/osqp/test_osqp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/osqp/test_osqp.py -------------------------------------------------------------------------------- /packages/packaging/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/packaging/meta.yaml -------------------------------------------------------------------------------- /packages/packaging/patches/0001-Add-Pyodide-compatibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/packaging/patches/0001-Add-Pyodide-compatibility.patch -------------------------------------------------------------------------------- /packages/pandas/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pandas/meta.yaml -------------------------------------------------------------------------------- /packages/pandas/test_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pandas/test_pandas.py -------------------------------------------------------------------------------- /packages/parso/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/parso/meta.yaml -------------------------------------------------------------------------------- /packages/patsy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/patsy/meta.yaml -------------------------------------------------------------------------------- /packages/pcodec/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pcodec/meta.yaml -------------------------------------------------------------------------------- /packages/pcodec/test_pcodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pcodec/test_pcodec.py -------------------------------------------------------------------------------- /packages/peewee/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/peewee/meta.yaml -------------------------------------------------------------------------------- /packages/peewee/test_peewee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/peewee/test_peewee.py -------------------------------------------------------------------------------- /packages/pi-heif/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pi-heif/meta.yaml -------------------------------------------------------------------------------- /packages/pi-heif/test_data/tree-with-transparency.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pi-heif/test_data/tree-with-transparency.heic -------------------------------------------------------------------------------- /packages/pi-heif/test_pi_heif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pi-heif/test_pi_heif.py -------------------------------------------------------------------------------- /packages/pillow-heif/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pillow-heif/meta.yaml -------------------------------------------------------------------------------- /packages/pillow-heif/patches/0001-Remove-include-path-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pillow-heif/patches/0001-Remove-include-path-check.patch -------------------------------------------------------------------------------- /packages/pillow-heif/test_data/tree-with-transparency.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pillow-heif/test_data/tree-with-transparency.heic -------------------------------------------------------------------------------- /packages/pillow-heif/test_pillow_heif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pillow-heif/test_pillow_heif.py -------------------------------------------------------------------------------- /packages/pkgconfig/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pkgconfig/meta.yaml -------------------------------------------------------------------------------- /packages/platformdirs/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/platformdirs/meta.yaml -------------------------------------------------------------------------------- /packages/platformdirs/test_platformdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/platformdirs/test_platformdirs.py -------------------------------------------------------------------------------- /packages/pluggy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pluggy/meta.yaml -------------------------------------------------------------------------------- /packages/ply/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ply/meta.yaml -------------------------------------------------------------------------------- /packages/polars/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/polars/meta.yaml -------------------------------------------------------------------------------- /packages/polars/test_polars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/polars/test_polars.py -------------------------------------------------------------------------------- /packages/pplpy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pplpy/meta.yaml -------------------------------------------------------------------------------- /packages/pplpy/test_pplpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pplpy/test_pplpy.py -------------------------------------------------------------------------------- /packages/primecountpy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/primecountpy/meta.yaml -------------------------------------------------------------------------------- /packages/primecountpy/test_primecountpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/primecountpy/test_primecountpy.py -------------------------------------------------------------------------------- /packages/prompt_toolkit/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/prompt_toolkit/meta.yaml -------------------------------------------------------------------------------- /packages/propcache/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/propcache/meta.yaml -------------------------------------------------------------------------------- /packages/protobuf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/protobuf/meta.yaml -------------------------------------------------------------------------------- /packages/protobuf/test_protobuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/protobuf/test_protobuf.py -------------------------------------------------------------------------------- /packages/pure-eval/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pure-eval/meta.yaml -------------------------------------------------------------------------------- /packages/py/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/py/meta.yaml -------------------------------------------------------------------------------- /packages/pyarrow/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyarrow/meta.yaml -------------------------------------------------------------------------------- /packages/pyarrow/test_pyarrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyarrow/test_pyarrow.py -------------------------------------------------------------------------------- /packages/pyclipper/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyclipper/meta.yaml -------------------------------------------------------------------------------- /packages/pyclipper/test_pyclipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyclipper/test_pyclipper.py -------------------------------------------------------------------------------- /packages/pycparser/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pycparser/meta.yaml -------------------------------------------------------------------------------- /packages/pycryptodome/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pycryptodome/meta.yaml -------------------------------------------------------------------------------- /packages/pycryptodome/test_pycryptodome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pycryptodome/test_pycryptodome.py -------------------------------------------------------------------------------- /packages/pydantic/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pydantic/meta.yaml -------------------------------------------------------------------------------- /packages/pydantic/test_pydantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pydantic/test_pydantic.py -------------------------------------------------------------------------------- /packages/pydantic_core/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pydantic_core/meta.yaml -------------------------------------------------------------------------------- /packages/pydecimal/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pydecimal/meta.yaml -------------------------------------------------------------------------------- /packages/pydecimal/src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pydecimal/src/pyproject.toml -------------------------------------------------------------------------------- /packages/pydecimal/test_pydecimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pydecimal/test_pydecimal.py -------------------------------------------------------------------------------- /packages/pydoc_data/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pydoc_data/meta.yaml -------------------------------------------------------------------------------- /packages/pydoc_data/src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pydoc_data/src/pyproject.toml -------------------------------------------------------------------------------- /packages/pydoc_data/test_pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pydoc_data/test_pydoc.py -------------------------------------------------------------------------------- /packages/pyerfa/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyerfa/meta.yaml -------------------------------------------------------------------------------- /packages/pygame-ce/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pygame-ce/meta.yaml -------------------------------------------------------------------------------- /packages/pygame-ce/test_pygame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pygame-ce/test_pygame.py -------------------------------------------------------------------------------- /packages/pyheif/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyheif/meta.yaml -------------------------------------------------------------------------------- /packages/pyheif/test_data/tree-with-transparency.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyheif/test_data/tree-with-transparency.heic -------------------------------------------------------------------------------- /packages/pyheif/test_pyheif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyheif/test_pyheif.py -------------------------------------------------------------------------------- /packages/pyiceberg/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyiceberg/meta.yaml -------------------------------------------------------------------------------- /packages/pyiceberg/test_pyiceberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyiceberg/test_pyiceberg.py -------------------------------------------------------------------------------- /packages/pyinstrument/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyinstrument/meta.yaml -------------------------------------------------------------------------------- /packages/pyinstrument/test_pyinstrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyinstrument/test_pyinstrument.py -------------------------------------------------------------------------------- /packages/pylimer-tools/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pylimer-tools/meta.yaml -------------------------------------------------------------------------------- /packages/pylimer-tools/test_pylimer_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pylimer-tools/test_pylimer_tools.py -------------------------------------------------------------------------------- /packages/pynacl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pynacl/meta.yaml -------------------------------------------------------------------------------- /packages/pynacl/patches/0001-Don-t-check-libsodium.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pynacl/patches/0001-Don-t-check-libsodium.patch -------------------------------------------------------------------------------- /packages/pyodide-http/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyodide-http/meta.yaml -------------------------------------------------------------------------------- /packages/pyodide-unix-timezones/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyodide-unix-timezones/meta.yaml -------------------------------------------------------------------------------- /packages/pyparsing/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyparsing/meta.yaml -------------------------------------------------------------------------------- /packages/pyproj/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyproj/meta.yaml -------------------------------------------------------------------------------- /packages/pyproj/test_pyproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyproj/test_pyproj.py -------------------------------------------------------------------------------- /packages/pyrsistent/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyrsistent/meta.yaml -------------------------------------------------------------------------------- /packages/pysam/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pysam/meta.yaml -------------------------------------------------------------------------------- /packages/pysam/patches/0001-remove-darwin-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pysam/patches/0001-remove-darwin-check.patch -------------------------------------------------------------------------------- /packages/pysam/patches/0001-remove_config_library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pysam/patches/0001-remove_config_library.patch -------------------------------------------------------------------------------- /packages/pysam/patches/0001-use-emmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pysam/patches/0001-use-emmake.patch -------------------------------------------------------------------------------- /packages/pysam/test_data/ex1.bam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pysam/test_data/ex1.bam -------------------------------------------------------------------------------- /packages/pysam/test_data/ex1.bam.bai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pysam/test_data/ex1.bam.bai -------------------------------------------------------------------------------- /packages/pysam/test_pysam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pysam/test_pysam.py -------------------------------------------------------------------------------- /packages/pyshp/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyshp/meta.yaml -------------------------------------------------------------------------------- /packages/pytaglib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytaglib/meta.yaml -------------------------------------------------------------------------------- /packages/pytaglib/test_pytaglib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytaglib/test_pytaglib.py -------------------------------------------------------------------------------- /packages/pytest-asyncio/inner_test_pytest_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytest-asyncio/inner_test_pytest_asyncio.py -------------------------------------------------------------------------------- /packages/pytest-asyncio/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytest-asyncio/meta.yaml -------------------------------------------------------------------------------- /packages/pytest-asyncio/test_pytest_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytest-asyncio/test_pytest_asyncio.py -------------------------------------------------------------------------------- /packages/pytest-benchmark/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytest-benchmark/meta.yaml -------------------------------------------------------------------------------- /packages/pytest-benchmark/patches/0001-Remove-cpuinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytest-benchmark/patches/0001-Remove-cpuinfo.patch -------------------------------------------------------------------------------- /packages/pytest-benchmark/test_pytest_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytest-benchmark/test_pytest_benchmark.py -------------------------------------------------------------------------------- /packages/pytest/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytest/meta.yaml -------------------------------------------------------------------------------- /packages/pytest/test_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytest/test_pytest.py -------------------------------------------------------------------------------- /packages/pytest_httpx/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytest_httpx/meta.yaml -------------------------------------------------------------------------------- /packages/python-calamine/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-calamine/meta.yaml -------------------------------------------------------------------------------- /packages/python-calamine/test-data/base.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-calamine/test-data/base.xlsx -------------------------------------------------------------------------------- /packages/python-calamine/test_python_calamine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-calamine/test_python_calamine.py -------------------------------------------------------------------------------- /packages/python-dateutil/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-dateutil/meta.yaml -------------------------------------------------------------------------------- /packages/python-flint/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-flint/meta.yaml -------------------------------------------------------------------------------- /packages/python-flint/test_python_flint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-flint/test_python_flint.py -------------------------------------------------------------------------------- /packages/python-magic/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-magic/meta.yaml -------------------------------------------------------------------------------- /packages/python-magic/test_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-magic/test_magic.py -------------------------------------------------------------------------------- /packages/python-sat/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-sat/meta.yaml -------------------------------------------------------------------------------- /packages/python-sat/patches/dummy_buildhpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-sat/patches/dummy_buildhpp.patch -------------------------------------------------------------------------------- /packages/python-sat/patches/force_malloc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-sat/patches/force_malloc.patch -------------------------------------------------------------------------------- /packages/python-sat/patches/proper_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-sat/patches/proper_build.patch -------------------------------------------------------------------------------- /packages/python-sat/test_python_sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-sat/test_python_sat.py -------------------------------------------------------------------------------- /packages/python-solvespace/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-solvespace/meta.yaml -------------------------------------------------------------------------------- /packages/python-solvespace/test_python_solvespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/python-solvespace/test_python_solvespace.py -------------------------------------------------------------------------------- /packages/pytz/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pytz/meta.yaml -------------------------------------------------------------------------------- /packages/pywavelets/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pywavelets/meta.yaml -------------------------------------------------------------------------------- /packages/pywavelets/test_pywt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pywavelets/test_pywt.py -------------------------------------------------------------------------------- /packages/pyxel/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyxel/meta.yaml -------------------------------------------------------------------------------- /packages/pyxel/test_pyxel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyxel/test_pyxel.py -------------------------------------------------------------------------------- /packages/pyxirr/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyxirr/meta.yaml -------------------------------------------------------------------------------- /packages/pyxirr/test_pyxirr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyxirr/test_pyxirr.py -------------------------------------------------------------------------------- /packages/pyyaml/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyyaml/meta.yaml -------------------------------------------------------------------------------- /packages/pyyaml/test_pyyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/pyyaml/test_pyyaml.py -------------------------------------------------------------------------------- /packages/rasterio/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rasterio/meta.yaml -------------------------------------------------------------------------------- /packages/rasterio/test_rasterio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rasterio/test_rasterio.py -------------------------------------------------------------------------------- /packages/rateslib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rateslib/meta.yaml -------------------------------------------------------------------------------- /packages/rateslib/test_rateslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rateslib/test_rateslib.py -------------------------------------------------------------------------------- /packages/rebound/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rebound/meta.yaml -------------------------------------------------------------------------------- /packages/rebound/patches/0001-fix-install_name.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rebound/patches/0001-fix-install_name.patch -------------------------------------------------------------------------------- /packages/rebound/patches/0002-fix-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rebound/patches/0002-fix-output.patch -------------------------------------------------------------------------------- /packages/rebound/patches/0003-no-emscripten.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rebound/patches/0003-no-emscripten.patch -------------------------------------------------------------------------------- /packages/rebound/test_rebound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rebound/test_rebound.py -------------------------------------------------------------------------------- /packages/reboundx/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/reboundx/meta.yaml -------------------------------------------------------------------------------- /packages/reboundx/test_reboundx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/reboundx/test_reboundx.py -------------------------------------------------------------------------------- /packages/referencing/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/referencing/meta.yaml -------------------------------------------------------------------------------- /packages/regex/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/regex/meta.yaml -------------------------------------------------------------------------------- /packages/regex/test_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/regex/test_regex.py -------------------------------------------------------------------------------- /packages/requests/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/requests/meta.yaml -------------------------------------------------------------------------------- /packages/requests/test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/requests/test_requests.py -------------------------------------------------------------------------------- /packages/retrying/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/retrying/meta.yaml -------------------------------------------------------------------------------- /packages/rich/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rich/meta.yaml -------------------------------------------------------------------------------- /packages/river/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/river/meta.yaml -------------------------------------------------------------------------------- /packages/river/test_river.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/river/test_river.py -------------------------------------------------------------------------------- /packages/rpds-py/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rpds-py/meta.yaml -------------------------------------------------------------------------------- /packages/ruamel.yaml/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ruamel.yaml/meta.yaml -------------------------------------------------------------------------------- /packages/rustworkx/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rustworkx/meta.yaml -------------------------------------------------------------------------------- /packages/rustworkx/test_rustworkx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/rustworkx/test_rustworkx.py -------------------------------------------------------------------------------- /packages/scikit-image/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scikit-image/meta.yaml -------------------------------------------------------------------------------- /packages/scikit-image/patches/make-tifffile-optional.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scikit-image/patches/make-tifffile-optional.patch -------------------------------------------------------------------------------- /packages/scikit-image/test_skimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scikit-image/test_skimage.py -------------------------------------------------------------------------------- /packages/scikit-learn/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scikit-learn/meta.yaml -------------------------------------------------------------------------------- /packages/scikit-learn/test_scikit-learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scikit-learn/test_scikit-learn.py -------------------------------------------------------------------------------- /packages/scipy/cmdline_test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/cmdline_test_file.py -------------------------------------------------------------------------------- /packages/scipy/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/info.md -------------------------------------------------------------------------------- /packages/scipy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/meta.yaml -------------------------------------------------------------------------------- /packages/scipy/patches/0001-Fix-dstevr-in-special-lapack_defs.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0001-Fix-dstevr-in-special-lapack_defs.h.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0002-int-to-string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0002-int-to-string.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0003-gemm_-no-const.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0003-gemm_-no-const.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0004-make-int-return-values.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0004-make-int-return-values.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0005-Fix-fitpack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0005-Fix-fitpack.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0006-Fix-gees-calls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0006-Fix-gees-calls.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0007-MAINT-linalg-Remove-id_dist-Fortran-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0007-MAINT-linalg-Remove-id_dist-Fortran-files.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0008-Mark-mvndst-functions-recursive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0008-Mark-mvndst-functions-recursive.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0009-Make-sreorth-recursive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0009-Make-sreorth-recursive.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0010-Link-openblas-with-modules-that-require-f2c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0010-Link-openblas-with-modules-that-require-f2c.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0011-Remove-fpchec-inline-if-then-endif-constructs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0011-Remove-fpchec-inline-if-then-endif-constructs.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0012-Remove-chla_transtype.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0012-Remove-chla_transtype.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0013-Set-wrapper-return-type-to-int.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0013-Set-wrapper-return-type-to-int.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0014-Skip-svd_gesdd-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0014-Skip-svd_gesdd-test.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0015-Remove-f2py-generators.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0015-Remove-f2py-generators.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0016-Make-sf_error_state_lib-a-static-library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0016-Make-sf_error_state_lib-a-static-library.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0017-Remove-test-modules-that-fail-to-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0017-Remove-test-modules-that-fail-to-build.patch -------------------------------------------------------------------------------- /packages/scipy/patches/0018-Fix-lapack-larfg-function-signature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/patches/0018-Fix-lapack-larfg-function-signature.patch -------------------------------------------------------------------------------- /packages/scipy/scipy-conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/scipy-conftest.py -------------------------------------------------------------------------------- /packages/scipy/scipy-pytest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/scipy-pytest.js -------------------------------------------------------------------------------- /packages/scipy/test_scipy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/scipy/test_scipy.py -------------------------------------------------------------------------------- /packages/screed/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/screed/meta.yaml -------------------------------------------------------------------------------- /packages/setuptools/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/setuptools/meta.yaml -------------------------------------------------------------------------------- /packages/shapely/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/shapely/meta.yaml -------------------------------------------------------------------------------- /packages/shapely/test_shapely.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/shapely/test_shapely.py -------------------------------------------------------------------------------- /packages/simplejson/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/simplejson/meta.yaml -------------------------------------------------------------------------------- /packages/simplejson/test_simplejson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/simplejson/test_simplejson.py -------------------------------------------------------------------------------- /packages/sisl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sisl/meta.yaml -------------------------------------------------------------------------------- /packages/sisl/test_sisl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sisl/test_sisl.py -------------------------------------------------------------------------------- /packages/six/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/six/meta.yaml -------------------------------------------------------------------------------- /packages/smart-open/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/smart-open/meta.yaml -------------------------------------------------------------------------------- /packages/sniffio/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sniffio/meta.yaml -------------------------------------------------------------------------------- /packages/sortedcontainers/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sortedcontainers/meta.yaml -------------------------------------------------------------------------------- /packages/soundfile/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/soundfile/meta.yaml -------------------------------------------------------------------------------- /packages/soundfile/patches/0001-Compile-using-API-mode-instead-of-ABI-mode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/soundfile/patches/0001-Compile-using-API-mode-instead-of-ABI-mode.patch -------------------------------------------------------------------------------- /packages/soundfile/patches/0001-Remove-custom-wheel-tag-logic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/soundfile/patches/0001-Remove-custom-wheel-tag-logic.patch -------------------------------------------------------------------------------- /packages/soundfile/test_soundfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/soundfile/test_soundfile.py -------------------------------------------------------------------------------- /packages/soupsieve/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/soupsieve/meta.yaml -------------------------------------------------------------------------------- /packages/sourmash/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sourmash/meta.yaml -------------------------------------------------------------------------------- /packages/sourmash/test_sourmash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sourmash/test_sourmash.py -------------------------------------------------------------------------------- /packages/soxr/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/soxr/meta.yaml -------------------------------------------------------------------------------- /packages/soxr/patches/0001-Fix-function-signatures.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/soxr/patches/0001-Fix-function-signatures.patch -------------------------------------------------------------------------------- /packages/soxr/test_soxr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/soxr/test_soxr.py -------------------------------------------------------------------------------- /packages/sparseqr/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sparseqr/meta.yaml -------------------------------------------------------------------------------- /packages/sparseqr/test_sparseqr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sparseqr/test_sparseqr.py -------------------------------------------------------------------------------- /packages/sqlalchemy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sqlalchemy/meta.yaml -------------------------------------------------------------------------------- /packages/sqlalchemy/test_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sqlalchemy/test_sqlalchemy.py -------------------------------------------------------------------------------- /packages/sqlite3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sqlite3/meta.yaml -------------------------------------------------------------------------------- /packages/sqlite3/src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sqlite3/src/pyproject.toml -------------------------------------------------------------------------------- /packages/sqlite3/test_sqlite3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sqlite3/test_sqlite3.py -------------------------------------------------------------------------------- /packages/ssl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ssl/meta.yaml -------------------------------------------------------------------------------- /packages/ssl/src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ssl/src/pyproject.toml -------------------------------------------------------------------------------- /packages/ssl/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ssl/test_ssl.py -------------------------------------------------------------------------------- /packages/stack-data/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/stack-data/meta.yaml -------------------------------------------------------------------------------- /packages/starlette/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/starlette/meta.yaml -------------------------------------------------------------------------------- /packages/statsmodels/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/statsmodels/meta.yaml -------------------------------------------------------------------------------- /packages/statsmodels/test_statsmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/statsmodels/test_statsmodels.py -------------------------------------------------------------------------------- /packages/strictyaml/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/strictyaml/meta.yaml -------------------------------------------------------------------------------- /packages/svgwrite/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/svgwrite/meta.yaml -------------------------------------------------------------------------------- /packages/swiglpk/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/swiglpk/meta.yaml -------------------------------------------------------------------------------- /packages/swiglpk/test_swiglpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/swiglpk/test_swiglpk.py -------------------------------------------------------------------------------- /packages/sympy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sympy/meta.yaml -------------------------------------------------------------------------------- /packages/sympy/test_sympy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/sympy/test_sympy.py -------------------------------------------------------------------------------- /packages/tblib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tblib/meta.yaml -------------------------------------------------------------------------------- /packages/termcolor/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/termcolor/meta.yaml -------------------------------------------------------------------------------- /packages/termcolor/test_termcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/termcolor/test_termcolor.py -------------------------------------------------------------------------------- /packages/test/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/test/meta.yaml -------------------------------------------------------------------------------- /packages/test/src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/test/src/pyproject.toml -------------------------------------------------------------------------------- /packages/test/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/test/test_test.py -------------------------------------------------------------------------------- /packages/test_packages_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/test_packages_common.py -------------------------------------------------------------------------------- /packages/texttable/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/texttable/meta.yaml -------------------------------------------------------------------------------- /packages/texture2ddecoder/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/texture2ddecoder/meta.yaml -------------------------------------------------------------------------------- /packages/texture2ddecoder/test_texture2ddecoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/texture2ddecoder/test_texture2ddecoder.py -------------------------------------------------------------------------------- /packages/threadpoolctl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/threadpoolctl/meta.yaml -------------------------------------------------------------------------------- /packages/tiktoken/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tiktoken/meta.yaml -------------------------------------------------------------------------------- /packages/tiktoken/test_tiktoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tiktoken/test_tiktoken.py -------------------------------------------------------------------------------- /packages/tomli-w/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tomli-w/meta.yaml -------------------------------------------------------------------------------- /packages/tomli/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tomli/meta.yaml -------------------------------------------------------------------------------- /packages/toolz/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/toolz/meta.yaml -------------------------------------------------------------------------------- /packages/tqdm/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tqdm/meta.yaml -------------------------------------------------------------------------------- /packages/traitlets/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/traitlets/meta.yaml -------------------------------------------------------------------------------- /packages/traits/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/traits/meta.yaml -------------------------------------------------------------------------------- /packages/tree-sitter-go/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tree-sitter-go/meta.yaml -------------------------------------------------------------------------------- /packages/tree-sitter-go/test_tree_sitter_go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tree-sitter-go/test_tree_sitter_go.py -------------------------------------------------------------------------------- /packages/tree-sitter-java/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tree-sitter-java/meta.yaml -------------------------------------------------------------------------------- /packages/tree-sitter-java/test_tree_sitter_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tree-sitter-java/test_tree_sitter_java.py -------------------------------------------------------------------------------- /packages/tree-sitter-python/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tree-sitter-python/meta.yaml -------------------------------------------------------------------------------- /packages/tree-sitter-python/test_tree_sitter_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tree-sitter-python/test_tree_sitter_python.py -------------------------------------------------------------------------------- /packages/tree-sitter/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tree-sitter/meta.yaml -------------------------------------------------------------------------------- /packages/tree-sitter/test_tree_sitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tree-sitter/test_tree_sitter.py -------------------------------------------------------------------------------- /packages/tskit/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tskit/meta.yaml -------------------------------------------------------------------------------- /packages/tskit/test_tskit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tskit/test_tskit.py -------------------------------------------------------------------------------- /packages/typing-extensions/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/typing-extensions/meta.yaml -------------------------------------------------------------------------------- /packages/tzdata/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/tzdata/meta.yaml -------------------------------------------------------------------------------- /packages/ujson/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ujson/meta.yaml -------------------------------------------------------------------------------- /packages/ujson/test_ujson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/ujson/test_ujson.py -------------------------------------------------------------------------------- /packages/uncertainties/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/uncertainties/meta.yaml -------------------------------------------------------------------------------- /packages/unyt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/unyt/meta.yaml -------------------------------------------------------------------------------- /packages/urllib3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/urllib3/meta.yaml -------------------------------------------------------------------------------- /packages/urllib3/test_urllib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/urllib3/test_urllib3.py -------------------------------------------------------------------------------- /packages/vega-datasets/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/vega-datasets/meta.yaml -------------------------------------------------------------------------------- /packages/vega-datasets/test_vega_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/vega-datasets/test_vega_datasets.py -------------------------------------------------------------------------------- /packages/vrplib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/vrplib/meta.yaml -------------------------------------------------------------------------------- /packages/wcwidth/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/wcwidth/meta.yaml -------------------------------------------------------------------------------- /packages/webencodings/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/webencodings/meta.yaml -------------------------------------------------------------------------------- /packages/wordcloud/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/wordcloud/meta.yaml -------------------------------------------------------------------------------- /packages/wordcloud/test_wordcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/wordcloud/test_wordcloud.py -------------------------------------------------------------------------------- /packages/wrapt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/wrapt/meta.yaml -------------------------------------------------------------------------------- /packages/wrapt/test_wrapt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/wrapt/test_wrapt.py -------------------------------------------------------------------------------- /packages/xarray/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xarray/meta.yaml -------------------------------------------------------------------------------- /packages/xarray/test_xarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xarray/test_xarray.py -------------------------------------------------------------------------------- /packages/xgboost/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xgboost/meta.yaml -------------------------------------------------------------------------------- /packages/xgboost/patches/0001-Fix-compilation-on-32-bit-platforms.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xgboost/patches/0001-Fix-compilation-on-32-bit-platforms.patch -------------------------------------------------------------------------------- /packages/xgboost/test_data/dermatology.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xgboost/test_data/dermatology.data -------------------------------------------------------------------------------- /packages/xgboost/test_xgboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xgboost/test_xgboost.py -------------------------------------------------------------------------------- /packages/xlrd/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xlrd/meta.yaml -------------------------------------------------------------------------------- /packages/xxhash/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xxhash/meta.yaml -------------------------------------------------------------------------------- /packages/xxhash/test_xxhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xxhash/test_xxhash.py -------------------------------------------------------------------------------- /packages/xyzservices/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xyzservices/meta.yaml -------------------------------------------------------------------------------- /packages/xyzservices/test_xyzservices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/xyzservices/test_xyzservices.py -------------------------------------------------------------------------------- /packages/yarl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/yarl/meta.yaml -------------------------------------------------------------------------------- /packages/yarl/test_yarl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/yarl/test_yarl.py -------------------------------------------------------------------------------- /packages/yt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/yt/meta.yaml -------------------------------------------------------------------------------- /packages/yt/patches/skip-openmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/yt/patches/skip-openmp.patch -------------------------------------------------------------------------------- /packages/zarr/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/zarr/meta.yaml -------------------------------------------------------------------------------- /packages/zarr/test_zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/zarr/test_zarr.py -------------------------------------------------------------------------------- /packages/zengl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/zengl/meta.yaml -------------------------------------------------------------------------------- /packages/zengl/test_zengl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/zengl/test_zengl.py -------------------------------------------------------------------------------- /packages/zfpy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/zfpy/meta.yaml -------------------------------------------------------------------------------- /packages/zfpy/patches/Modernise-packaging.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/zfpy/patches/Modernise-packaging.patch -------------------------------------------------------------------------------- /packages/zfpy/test_zfpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/zfpy/test_zfpy.py -------------------------------------------------------------------------------- /packages/zstandard/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/zstandard/meta.yaml -------------------------------------------------------------------------------- /packages/zstandard/test_zstandard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/packages/zstandard/test_zstandard.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/calc_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/tools/calc_diff.py -------------------------------------------------------------------------------- /tools/constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/tools/constraints.txt -------------------------------------------------------------------------------- /tools/copy_pyodide_runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/tools/copy_pyodide_runtime.sh -------------------------------------------------------------------------------- /tools/install_and_patch_emscripten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/tools/install_and_patch_emscripten.py -------------------------------------------------------------------------------- /tools/parse_build_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/tools/parse_build_result.py -------------------------------------------------------------------------------- /tools/prepare_pyodide_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/tools/prepare_pyodide_build.sh -------------------------------------------------------------------------------- /tools/sync_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/tools/sync_package.sh -------------------------------------------------------------------------------- /tools/tests/test_parse_build_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyodide/pyodide-recipes/HEAD/tools/tests/test_parse_build_result.py --------------------------------------------------------------------------------