Skip to main content

lightarray

A small-array library for Python with the NumPy interface. Arrays of up to a few thousand elements run several times faster than NumPy because the per-operation overhead is 30 to 70 ns instead of NumPy's 350 to 500 ns. Everything lightarray does not implement itself is delegated to NumPy.

import lightarray as np  # instead of: import numpy as np

t = np.linspace(0.0, 3.0, 601)
omega = 2 * np.pi
p = np.sin(omega * t / 2) ** 2  # runs in Rust
print(p.mean(), p.argmax(), p.std())  # native reductions
print(np.polyfit(t, p, 3))  # NumPy, transparently
  • Same names as NumPy. lightarray exposes every public name of the numpy module and lightarray.ndarray every method and property of numpy.ndarray. Names without a native implementation call NumPy on a zero-copy view and return lightarray arrays for float64, int64 and bool results.
  • NumPy interop both ways. The buffer protocol, __array__, __array_ufunc__, __array_function__ and DLPack are implemented, so matplotlib, SciPy and NumPy itself accept lightarray arrays, and NumPy functions called on them hand back lightarray arrays.
  • Mutable, like NumPy. x[2, 3] = 2, x[:, 0] = row, x[mask] = 0, x += 1 and in-place methods such as x.sort() all work; np.asarray(x) is a writable zero-copy view.
  • Rust core, PyO3 bindings. Contiguous float64, int64 and bool buffers with inline shape and strides; the binding overhead was measured against a hand-written C extension (benchmarks/carray_reference) before choosing Rust.

Using it in place of NumPy

Change the import and nothing else:

import lightarray as np  # was: import numpy as np

Downstream libraries keep their own numpy import; they receive lightarray arrays through the buffer protocol and hand back NumPy arrays, which lightarray accepts everywhere. examples/lmfit_model_fit.py is lmfit's "Fitting with Model" documentation example with only the import changed: the model evaluation, noise and residuals run in lightarray and lmfit/SciPy perform the optimisation. tests/test_lmfit.py checks that it reaches the same optimum as with NumPy.

To see how much of a script runs natively, read lightarray._fallback.calls before and after: it counts the operations delegated to NumPy.

Taking over NumPy inside a library

A library such as lmfit keeps its own import numpy as np; its functions look that name up at call time. lightarray.patch_module(lmfit) rebinds the NumPy references in a loaded package (the np alias, ufuncs, names from from numpy import ..., submodules) to lightarray, so the library's own array work runs on lightarray without editing it. Classes such as np.ndarray used in isinstance checks stay NumPy, and compiled code receives lightarray arrays through the buffer protocol.

import lmfit
import lightarray as np

np.set_patched(lmfit, True)  # on; False restores NumPy; is_patched() queries
with np.patched(lmfit):  # on for a block
    result = model.fit(y, x=x, amp=5, cen=5, wid=1)
LIGHTARRAY_PATCH=lmfit,scipy:numpy python my_script.py   # no code change at all

For packages whose compiled kernels require real NumPy arrays (SciPy) use conversions="numpy" (the :numpy suffix above): conversion functions stay NumPy's and every other function runs on lightarray only when it receives a lightarray argument. With both lmfit and SciPy patched, lmfit's documentation examples reach the same optimum as with NumPy and the per-evaluation path delegates nothing (examples/lmfit_internals.py, tests/test_lmfit.py, tests/test_scipy_dropin.py).

Speed

Total time per operation in nanoseconds, best of 7 runs, benchmarked against NumPy 2.5.3 on Python 3.14.2, one core of an i7-13650HX.

Operation lightarray NumPy
a + b 82 385
a * 2.0 80 593
np.sin(a) 103 371
a.sum() 125 462
a.std() 126 6558
np.sum(a) 118 1506
a > 0.5 92 578
a[a > 0.5] 204 880
(a > 0.2) & (a < 0.8) 256 1559
np.where(a > 0.5, a, 0.0) 281 1418
i * 2 98 667
a[idx] 116 145
m[1] 76 78
m[:, 1] 182 86
np.array(values) 134 479
np.arange(10) 115 404
np.zeros(10) 119 180
a[3] = 2.0 42 39
a += 1.0 26 552

a and b are float64 arrays of 10 elements, m is a 10 x 10 float64 array, i is np.arange(10), idx an int64 array of 3 indices and values a list of 10 floats (python benchmarks/readme_table.py regenerates the table). Reductions include building the np.float64 result, which is most of a.sum()'s time. Creating a strided view (m[:, 1]) is the one operation slower than NumPy: it allocates the contiguous cache the kernels work on. Above roughly 10000 elements the two libraries converge; lightarray is not a large-array library.

Status

Version 0.2.0. float64, int64 and bool arrays are native, with NumPy's dtype inference (np.array([1, 2]) is int64, comparisons give bool arrays, int and float mix to float64); every other dtype and the long tail of NumPy functions go through NumPy at NumPy speed plus about 1 µs and come back as NumPy arrays. Known limit: isinstance(x, numpy.ndarray) is False for a lightarray array and cannot be made True.

Indexing with integers and slices, reshape, ravel and .T return views that share memory with the array, as in NumPy (row = a[0]; row[:] = 0 and a[:, 1] *= 2 change a). The kernels work on contiguous buffers: a contiguous selection is a window into the base's buffer at no extra cost, while a strided one (a[:, 0], a[::2], the transpose of a matrix) is gathered from the base when it is used, which is cheap for small arrays and one extra pass over the data for large ones. Views that NumPy returns for delegated operations (swapaxes, split, a[..., 1]) stay views as well.

Where NumPy and the Array API disagree, lightarray follows NumPy. Against the official Array API test suite it passes 1346 of 1374 tests; 27 of the 28 failures are tests NumPy lists as expected failures of its own (tools/ci/array-api-xfails.txt): finfo returning NumPy scalars, complex expm1 at infinities (numpy#21746) and floor_divide of infinities, where NumPy follows Python. The last one is indexing a NumPy array with an empty lightarray bool mask, which NumPy casts to an integer index. lightarray does add the Array API keywords NumPy lacks (sort(descending=), fft.fftfreq(dtype=)), since they change nothing NumPy does.

Development

python -m venv .venv && source .venv/bin/activate
pip install maturin "numpy>=2.1" pytest matplotlib lmfit
maturin develop --release
pytest                          # parity tests against NumPy
cargo test --release --lib      # kernel tests
benchmarks/carray_reference/build.sh && python benchmarks/bench_overhead.py
python benchmarks/gate.py       # performance regression gate
python examples/lmfit_model_fit.py   # lmfit example running on lightarray
python examples/lmfit_internals.py   # lmfit's own internals rebound to lightarray

Requires Python 3.10+, NumPy 2.1+, and a stable Rust toolchain.

Release files for lightarray 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for lightarray 0.2.0
File Size Uploaded
lightarray-0.2.0.tar.gz 103.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for lightarray 0.2.0
File
lightarray-0.2.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
lightarray-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
lightarray-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
lightarray-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
lightarray-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
lightarray-0.2.0-cp314-cp314-macosx_11_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 11.0+ x86-64 Details
lightarray-0.2.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
lightarray-0.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
lightarray-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
lightarray-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
lightarray-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
lightarray-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
lightarray-0.2.0-cp313-cp313-macosx_11_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 11.0+ x86-64 Details
lightarray-0.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
lightarray-0.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
lightarray-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
lightarray-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
lightarray-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
lightarray-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
lightarray-0.2.0-cp312-cp312-macosx_11_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 11.0+ x86-64 Details
lightarray-0.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
lightarray-0.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
lightarray-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
lightarray-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
lightarray-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
lightarray-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
lightarray-0.2.0-cp311-cp311-macosx_11_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 11.0+ x86-64 Details
lightarray-0.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
lightarray-0.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
lightarray-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
lightarray-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
lightarray-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
lightarray-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
lightarray-0.2.0-cp310-cp310-macosx_11_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 11.0+ x86-64 Details
lightarray-0.2.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 18.3 MB

Release files / lightarray-0.2.0.tar.gz

Download URL lightarray-0.2.0.tar.gz
Size 103.9 kB
Tags Source
SHA-256 checksum
How to use checksums
371fa09cc6e9a9525a4390b89d759765e5fdb3cf76c22eab13f032fa2544db2e
BLAKE2b-256 checksum
How to use checksums
a977a3657541b1643c78a0870a7db2fdb25d01054ccf8688a5ddcbac5353745a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp314-cp314-win_amd64.whl

Download URL lightarray-0.2.0-cp314-cp314-win_amd64.whl
Size 441.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
e7e30fe5282727a93c7ccfd55056a913620b31c657b317510599df688c3fb1b4
BLAKE2b-256 checksum
How to use checksums
e21fda40e4f023f8902ceef469fd1ba3be494f67a939f8221adaa62ca17f16a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL lightarray-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 613.6 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
83a373bd18629b52b1ec3b2f65b5156e7177b56350d90cbbecdedba7399c2a9d
BLAKE2b-256 checksum
How to use checksums
649fefbd31b88d02aca8196dfb67ee277b54b35e7c38042bcf8f6dc1679c83a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL lightarray-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 566.1 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
adc7818f9ce167d46b27986a708046712dbffe1261a1ade5463123dde9194855
BLAKE2b-256 checksum
How to use checksums
2f7cac9e8946e91d85e4bbd1ca5aefc9dde75eb175cbb212cbd86859aa06c042
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL lightarray-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Size 533.0 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
72d7442f864cb97fd40cea5a5b059bcb98474e7dbc87941a7a925cfc5b78740b
BLAKE2b-256 checksum
How to use checksums
8e1601abd75e96e343215d59ffa4a69b19efaf9a326ce557d6004c54721462a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL lightarray-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl
Size 501.6 kB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
03141f1781884375c5d8669043b8ac92b1ff2e11d3b8d9c5d097ac7210c8fdaf
BLAKE2b-256 checksum
How to use checksums
4d4ab2a67d56a684fdbc8a3e62ad8e8200df2cf9d0733e732da68f27991e9248
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp314-cp314-macosx_11_0_x86_64.whl

Download URL lightarray-0.2.0-cp314-cp314-macosx_11_0_x86_64.whl
Size 518.0 kB
Tags CPython 3.14 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
843ccf93a0744ad51a87dfb7bd3b29c90b101f8c4ec5e011c2a11ed552654325
BLAKE2b-256 checksum
How to use checksums
51e25a12219f1edc719bdcab5c00e64c6fca50f9093256ceed2adcf9995c4277
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL lightarray-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Size 477.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
128cc691ea5de0548c2028b9ee1d499d3545561ee06b820e5a685f58570868bf
BLAKE2b-256 checksum
How to use checksums
1df91a2ec24bae92a5e9b1cbe380db97ea7ce77a94ca305b9dcd05e4e8f6aa12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp313-cp313-win_amd64.whl

Download URL lightarray-0.2.0-cp313-cp313-win_amd64.whl
Size 442.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
a9be9e964753d6150d0fcc79de9f7a5be55c8fe977fb4fa5429a18a709f1ad92
BLAKE2b-256 checksum
How to use checksums
fd8fb0e180845cd6359abfdd07138f30b6cafb695bfd97301b16aa73dfab7924
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL lightarray-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 613.0 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5d8096b8427640af62ffebeb04d48e73eaec47f16652f84433923ed854cf4ca2
BLAKE2b-256 checksum
How to use checksums
017ae9482c052474ee8a363831e9b5ce4aba7d32b6a48ad1f541422f6187aa4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL lightarray-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 566.2 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
dd455c98bbc21ce081d73cf47113d097c40b7c0eb3ac49828578ea171ba291b3
BLAKE2b-256 checksum
How to use checksums
1e7ccc7d6ff8f3647ccc5500c0907f59d45e5025ab9ef8f2d263a90b19e09c95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL lightarray-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Size 532.5 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8237304a94d1067700a8e4a1a0a9712a63edfce0b5ad1b34d014055a670a0d0b
BLAKE2b-256 checksum
How to use checksums
c2ba56b2188d8433efd499ee0c1f714a288b087c9ee91644b3d0bca8b3806075
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL lightarray-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl
Size 501.9 kB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9eb1b917753977a4a9369c17967105ce8462e3db713f18ebcb96431015c264c5
BLAKE2b-256 checksum
How to use checksums
0681146e5a0a668457eb548270d2639845e3cee9efd4896072f8e0d734c0f7d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp313-cp313-macosx_11_0_x86_64.whl

Download URL lightarray-0.2.0-cp313-cp313-macosx_11_0_x86_64.whl
Size 518.1 kB
Tags CPython 3.13 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
157204ed3edb10ffb705f7b1fe4190aee7255d7c556a05f4ae19fce752a069ce
BLAKE2b-256 checksum
How to use checksums
08cfc8b0477b13e68afec9b550ea0b453c97504177d5672d63fe79cbdf11277f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL lightarray-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 477.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0ed2291e42f57e644c0a44d5672a6567e6e57ea7e0dcebab30fd5a4a8e731520
BLAKE2b-256 checksum
How to use checksums
fc9be5bf40e0b5f21bec870d1bb70e75d10c7b576b617e44a52899160058949c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp312-cp312-win_amd64.whl

Download URL lightarray-0.2.0-cp312-cp312-win_amd64.whl
Size 442.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
6c839942d9bf06f4ffe6f55154b3c96c6cd34e8ddcfc3197c4b911c881a023c6
BLAKE2b-256 checksum
How to use checksums
a1c19de3f155ace551349a384d2186cb6dea9dae9105974d1224d31e525d2c9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL lightarray-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 612.1 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1ea2bb4f6269d2233204f21f5a586b1f8c86a299cd65a0cc0da114f76a777ada
BLAKE2b-256 checksum
How to use checksums
dd861efaef1d8f23447f4359ff79716dd0b202f0331ba1e3114efbaeb5602622
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL lightarray-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 565.6 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7243ff5f4c8283443f13de7310f71201007677dddecbcab571aa7598ca8bbb75
BLAKE2b-256 checksum
How to use checksums
d85c1298501c0fbfdf3f8dcb11730140054857d770bf05f1beee40895f3ffe3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL lightarray-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 531.6 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
50708d17d01f69da233c007512b0af8d6bc9efda14f80d6385f22c56d51b2afd
BLAKE2b-256 checksum
How to use checksums
775e6144a44096c02e269965f865d154991a709c08b304c3203ee24178d027ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL lightarray-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl
Size 501.2 kB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
62d8573937f51e9fe632ba8adae6afbfccd651b812e52a12c8f4f314e3eead2f
BLAKE2b-256 checksum
How to use checksums
712c0920837d50777bc9ed083a9378498eb3bf2338a47258b7b1f9533a032cc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp312-cp312-macosx_11_0_x86_64.whl

Download URL lightarray-0.2.0-cp312-cp312-macosx_11_0_x86_64.whl
Size 517.5 kB
Tags CPython 3.12 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
a648e1e554e78a42ae0ff3a47d0c1260294da57e64b75856e15fb937cb68b6fb
BLAKE2b-256 checksum
How to use checksums
3e88af278351782d6b0dd8bf1237c35b2a5d0e69e6e65bd408eb0860b859c2d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL lightarray-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 476.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e8fdc7b47630c7c1f5fb545401aef3fa27cba2b548fd4ebc8fe62b59e3ea9ee4
BLAKE2b-256 checksum
How to use checksums
a553292b64137999deae21fc9b16a4df712908eec89e46de7a51aee1bf32641b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp311-cp311-win_amd64.whl

Download URL lightarray-0.2.0-cp311-cp311-win_amd64.whl
Size 445.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
96a60e8efb4cd0048a852e6410a9eed242ef3242bce7c42e64012bf94381b0b0
BLAKE2b-256 checksum
How to use checksums
47a6cd2138466733bc96aead50dfd9e5e68dcb9d14bc6a9ef7b9d7665865fb63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL lightarray-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 611.3 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3e66dcc3ed4c3ab423c24c0cc4e71249052d0288ffd8b210f483e52bb31d5be4
BLAKE2b-256 checksum
How to use checksums
c7fd5ef6553f9f726465ece5694c74bfd4f60acf9457fb56169e8044d3011c9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL lightarray-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 567.4 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6783d79eb5d7c1d1bd45c7eab3f479d25f6ffba8b66fbe00097b2353de92489a
BLAKE2b-256 checksum
How to use checksums
b8b1adaee34429c11321d8a2aee7a415129fecc6fba8323d671b5129fe23abea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL lightarray-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 530.9 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cc7df78fe52aba41959ad64f4808fd07253125e0141d4c567d4183858cea0f3c
BLAKE2b-256 checksum
How to use checksums
72757bb1436343110972f5fca063ab558835e022974c95dd48d436e8a4c0b9ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL lightarray-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl
Size 503.4 kB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9104bce912444b709be91b42a281c9243454994a38d810618ee217ff9ee4c4ce
BLAKE2b-256 checksum
How to use checksums
bbd8259fb98e2030c00441ff1f6fac84177b95108f372a229538da32fe4de789
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp311-cp311-macosx_11_0_x86_64.whl

Download URL lightarray-0.2.0-cp311-cp311-macosx_11_0_x86_64.whl
Size 501.1 kB
Tags CPython 3.11 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
0d0fef9e63af96ce98bb035a8758f8b8ff66293059ed7b186117d64ec50aa587
BLAKE2b-256 checksum
How to use checksums
2fbdb0ecbe8c57eb55af2a5d9404352bc205f6cff771b0a4e7b5b3221757a437
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL lightarray-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 483.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1f82da5520e89cd7c192f4f885770a9605d1765618709cd83bcee4dd40941db4
BLAKE2b-256 checksum
How to use checksums
ae273d39902cd9991906d7639fef4ae989def145342ce8867037a34db65ea6ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp310-cp310-win_amd64.whl

Download URL lightarray-0.2.0-cp310-cp310-win_amd64.whl
Size 447.0 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
301bc4adb17c1c001550297ba999278b8eb1c652972511d4fe16e6e46037c4ab
BLAKE2b-256 checksum
How to use checksums
e89d15aafe95d277465d1a1a2188b02be1e68c9df62ecfc7010938a965b426a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL lightarray-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 612.9 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
955e624d10ca2e541f140b4048591c65dd16104349ac28d6b2d64599eddcf1da
BLAKE2b-256 checksum
How to use checksums
35c2cafd1b21ead4531ce11c60ca11f424115b67747a82ef38680868ce511565
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL lightarray-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 570.0 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b1b7adcbc9b051c519f761ab7fbdd72d8473bdfc6ca9c77b0e3ea7e5e1d5f41c
BLAKE2b-256 checksum
How to use checksums
0ba252b8dc3bf5af1c5960ae6d9918c9e1ca8641c2f42ad42fc8a7d6220c2300
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL lightarray-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 532.5 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5cc97dec15bf9ab87bf9bbe3b9cd262965e4ce05d50e4f95076c187257d51e06
BLAKE2b-256 checksum
How to use checksums
276eda686fd29c5a45ef777c583d1a60556254da98ed4f066d94f1d90aacfd53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL lightarray-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl
Size 505.1 kB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
49bcde0c2388055e397cb278475704c03f7ca1d429ef032aa7dbd4c5b9dc4801
BLAKE2b-256 checksum
How to use checksums
59f17d760096b268d0651ef3967f14e80523aed63ace1337251c3cd012ff3c32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp310-cp310-macosx_11_0_x86_64.whl

Download URL lightarray-0.2.0-cp310-cp310-macosx_11_0_x86_64.whl
Size 502.9 kB
Tags CPython 3.10 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
ff683d0ac0120fdd5ff0bd28f465ff5494d2768192a23f768a156ae61072f63a
BLAKE2b-256 checksum
How to use checksums
1e7f6317e14f04a7ddd861f28aa04541794099e7311e077414d9cf85535a3af5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / lightarray-0.2.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL lightarray-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Size 484.2 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f294d4c831fdc1f13c48d8458de20184762ebc2762e5943299c3cea8d6937995
BLAKE2b-256 checksum
How to use checksums
459ea2a3878792ac800e767baff9782c876a5ab4cd216072a8948dc4a18ff09a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release history Release notifications | RSS feed

0.3.1

15 release files

This release

0.2.0 This release

36 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page