diff --git a/packages/arro3-compute/meta.yaml b/packages/arro3-compute/meta.yaml deleted file mode 100644 index 72397477..00000000 --- a/packages/arro3-compute/meta.yaml +++ /dev/null @@ -1,21 +0,0 @@ -package: - name: arro3-compute - version: 0.4.1 - _disabled: true # update to 2026_0 - top-level: - - "arro3.compute" -source: - url: https://github.com/kylebarron/arro3/releases/download/py-v0.4.1/arro3_compute-0.4.1-cp312-cp312-emscripten_3_1_58_wasm32.whl - sha256: 4501c0e9814a03e06e66988aab3bdb25d46594b6693d907158b67311ab29d7df -requirements: - run: - - arro3-core -extra: - recipe-maintainers: - - kylebarron - -about: - home: https://github.com/kylebarron/arro3 - PyPI: https://pypi.org/project/arro3-compute - summary: Compute kernels for Apache Arrow memory. - license: MIT diff --git a/packages/arro3-core/meta.yaml b/packages/arro3-core/meta.yaml deleted file mode 100644 index 054ddd71..00000000 --- a/packages/arro3-core/meta.yaml +++ /dev/null @@ -1,18 +0,0 @@ -package: - name: arro3-core - version: 0.4.1 - _disabled: true # update to 2026_0 - top-level: - - "arro3.core" -source: - url: https://github.com/kylebarron/arro3/releases/download/py-v0.4.1/arro3_core-0.4.1-cp312-cp312-emscripten_3_1_58_wasm32.whl - sha256: ea1ff02a0dd67129ba9dc81dde85415029cdc61c4172790857189328167c6be3 -extra: - recipe-maintainers: - - kylebarron - -about: - home: https://github.com/kylebarron/arro3 - PyPI: https://pypi.org/project/arro3-core - summary: A minimal Python library for Apache Arrow, connecting to the Rust arrow crate - license: MIT diff --git a/packages/arro3-core/test_arro3_core.py b/packages/arro3-core/test_arro3_core.py deleted file mode 100644 index 2ad4af65..00000000 --- a/packages/arro3-core/test_arro3_core.py +++ /dev/null @@ -1,8 +0,0 @@ -from pytest_pyodide import run_in_pyodide - - -@run_in_pyodide(packages=["arro3-core"]) -def test_read_write_parquet(selenium): - from arro3.core import Array, DataType - - Array([1, 2, 3], DataType.int64()) diff --git a/packages/arro3-io/meta.yaml b/packages/arro3-io/meta.yaml deleted file mode 100644 index a6f3f06d..00000000 --- a/packages/arro3-io/meta.yaml +++ /dev/null @@ -1,22 +0,0 @@ -package: - name: arro3-io - version: 0.4.1 - # Disabled until we have a wheel with the new abi - _disabled: true - top-level: - - "arro3.io" -source: - url: https://github.com/kylebarron/arro3/releases/download/py-v0.4.1/arro3_io-0.4.1-cp312-cp312-emscripten_3_1_58_wasm32.whl - sha256: bf290dd5950603ae45e66a4d85747c1c53c373d0c2c7b7fe4293d6e283dfb8f1 -requirements: - run: - - arro3-core -extra: - recipe-maintainers: - - kylebarron - -about: - home: https://github.com/kylebarron/arro3 - PyPI: https://pypi.org/project/arro3-io - summary: Read and write tabular data formats to and from Apache Arrow. - license: MIT