Skip to main content

NUmerical Linear Algebra PACKage

Project description

NULAPACK: NUmerical Linear Algebra PACKage

NULAPACK is a lightweight, high-performance numerical linear algebra library. It provides a set of core subroutines implemented in Fortran for efficiency, with convenient C++ and Python interfaces.

Installation

nulapack can be installed from PyPI or built from source. Using uv is recommended for fast and reproducible environments.


Install from PyPI

Using pip

System-wide (user install):

pip install --upgrade --user nulapack

You may need to use pip3 instead of pip depending on your Python installation.

Inside a virtual environment:

python -m venv .venv
source .venv/bin/activate
pip install --upgrade nulapack

Using uv (recommended)

Install into a new environment:

uv venv
source .venv/bin/activate
uv pip install nulapack

Add to an existing uv project:

uv add nulapack
uv sync

Using pipenv

pipenv install nulapack

Using poetry

poetry add nulapack

Using hatch

hatch add nulapack

Declaring as a Dependency

pyproject.toml:

[project.dependencies]
nulapack = ">=0.1.0"

requirements.txt:

nulapack>=0.1.0

Building from Source

Building from source is useful if you want the latest features or need to modify the Fortran core.

Prerequisites

  • CMake ≥ 3.10
  • Fortran compiler (e.g. gfortran)
  • C/C++ compiler (e.g. gcc, clang)
  • Python ≥ 3.9
  • uv

Build and install

git clone https://github.com/NULAPACK/NULAPACK.git
cd NULAPACK

uv venv
source .venv/bin/activate

uv run bin/build.py develop --with-py

Usage

Python

import numpy as np
from nulapack import doolittle

A = np.array([[4, 3], [6, 3]], dtype=np.float64)
L, U, info = doolittle(A)

if info == 0:
    print("L:\n", L)
    print("U:\n", U)

C++

#include <iostream>
#include <vector>
#include "Doolittle.h"

int main() {
    int n = 2;
    std::vector<double> a = {4, 3, 6, 3};
    std::vector<double> l(n * n, 0.0);
    std::vector<double> u(n * n, 0.0);
    int info;

    doolittle(&n, a.data(), l.data(), u.data(), &info);

    if (info == 0) {
        // Use l and u
    }
    return 0;
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

nulapack-0.2.2-cp314-cp314t-win_amd64.whl (67.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

nulapack-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (56.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nulapack-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (56.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

nulapack-0.2.2-cp314-cp314-win_amd64.whl (66.0 kB view details)

Uploaded CPython 3.14Windows x86-64

nulapack-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (55.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

nulapack-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

nulapack-0.2.2-cp313-cp313-win_amd64.whl (64.5 kB view details)

Uploaded CPython 3.13Windows x86-64

nulapack-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (55.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nulapack-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

nulapack-0.2.2-cp312-cp312-win_amd64.whl (64.5 kB view details)

Uploaded CPython 3.12Windows x86-64

nulapack-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (55.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nulapack-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

nulapack-0.2.2-cp311-cp311-win_amd64.whl (64.7 kB view details)

Uploaded CPython 3.11Windows x86-64

nulapack-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (55.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nulapack-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (54.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

nulapack-0.2.2-cp310-cp310-win_amd64.whl (64.5 kB view details)

Uploaded CPython 3.10Windows x86-64

nulapack-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (54.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nulapack-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (53.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

nulapack-0.2.2-cp39-cp39-win_amd64.whl (64.2 kB view details)

Uploaded CPython 3.9Windows x86-64

nulapack-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (54.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nulapack-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (53.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

File details

Details for the file nulapack-0.2.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 67.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nulapack-0.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 10d692db6e3a78aaf4e8c037b8970bd65ba4b36204645958e91522806f435ab1
MD5 54983c8709fb0b6cd56acc2da14ab9d4
BLAKE2b-256 927f0d86251150da79a00c751707aa72a90be51e3b5319e4ddf54b4eb720a1c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp314-cp314t-win_amd64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73fb3315a8c0d3452dde9c548c9fea6eeb9f8e26bee42861df09b46fe80b408c
MD5 0563c03ef8a49f34a61ddb35d68992d2
BLAKE2b-256 daea5be4d2ce3859969382d4bcfb9dfa0f9b32f6094c3152c044b4424c1c4a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 872195d60ed58cb8fe959335757898c3f9548df6f95b634e5f08d995228cd384
MD5 fa5404a8115707fae06ef821c408e27b
BLAKE2b-256 8af96643c81da65b9cb49f7620f4d890caf15252a545889c8482fdf61f0e6e32

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 66.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nulapack-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fb7828a631f923863777bf64b6f8e786e95b880b3a8f5f09880605806f2709bb
MD5 ae68da082f61499c4aa29911f8228ac6
BLAKE2b-256 c696159902a4ca40f810e6c0a743eeb54f6a6aec893dc5497b078f92554658c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp314-cp314-win_amd64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b36f306fb567c346e528b5a188f5e7dd222b6d8d27dad3d3d8c96f67fea2c8ae
MD5 d41f3223c6eb3a560943e0146f675579
BLAKE2b-256 caf1db9c92fcae38950151f1459aaabfdb725d283b0ac2b197aa2cd749597026

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d9ed83a1a512c3effbf016af5910a948b3f69e1e2ca36f38cafb87258c16b1e
MD5 0a7f64bfdc467555f3f0e10fe8c10607
BLAKE2b-256 e2db0bb70cd9531696ddd1b8fe258fe6b47119ec6ad3ecba7769577e075bd09a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 64.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nulapack-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e8dcdd8e509b8374af2b966a897d62a1d2434740c08a33638b061d767f27f67
MD5 5bc6624d6a9a38e5a6f54d869441623c
BLAKE2b-256 5b350628a34785d4f577171924638470503b38e5d78a91c4d9bf6dce4719d53d

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp313-cp313-win_amd64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbba8e48b23a6985d1767693ba357834613d4b2d3c955755ee981a40ae5af7c4
MD5 0446120c0fc76dd98dfb4cf1f88f8340
BLAKE2b-256 d7c39122bfca2ae0eb570a534a104bdc3e4c2b9ce1881acb05265cef31817227

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c7574d264986ab3dc83a495621b9043a83ec54062991e39a121f990f70ba54f
MD5 189750053790198805b4b4171149fa19
BLAKE2b-256 2f4752c4ac090929ac7846ea72fa7f8f406ca5e966851c39752546f4f2c78be1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 64.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nulapack-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c3bb832c6ad266d1b986cb25f17fe069e51cfcfe1c91b00aceca88ee447f9b6d
MD5 9cb99233058cc256ef8f3064837f4022
BLAKE2b-256 32e8eb0f1f0b413bdd6c5b65ddd3689eee5d34ac30776cb0eeb07c177128409a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp312-cp312-win_amd64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b09c5f21159ce62bfa90d2b3449084e933aef0edd3794b4193a9ba1611ed441f
MD5 76ce6fb557a3a5fb10ec0a35b85a8153
BLAKE2b-256 afffb6a6c5cd5dd594a73bdffedb99ca2a6d11a255c87374ad5ea13714970c32

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6357bff02e93037dec1a15abae0e6fa7125ab73f18a3a24d5ae3555661c8daff
MD5 e9fe15b86b2bd5dddcad184a3fcc1d7f
BLAKE2b-256 3f5f60459491c63192c7ec594ddbbe14f718ebbbb34da548fc194bca8e5d724f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 64.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nulapack-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8fd047840649e1ed3a1d3e31380248e7508515e6ed7211f8f37bf4e3beb1ad7f
MD5 a69e101124176a7d54c8988eb5426f3f
BLAKE2b-256 701952680fd4b19365c2e6c5ef83e405b08c9d44b9d26a2fdc1f6a87a6bf7e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp311-cp311-win_amd64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea81e80efeaa5cb0bce105103b03e3bf62ee7c09f58279bba8cf98987a23929d
MD5 ea48a892b522a13ee9eeb6b223301385
BLAKE2b-256 dcf8bdf639c629e0572250fd16d129872443e07c9906c78301add8e6866afd0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 271f7006c81fffc0acb319c58f350c157e9e8b6360bd5d2dbff0b8cc2fea51fb
MD5 6bb546fe970ba86b311d2a40c6b26007
BLAKE2b-256 4131665228448c2379fc188547171d2e92c8bd3a3e24e6a04a077520f14fd9e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 64.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nulapack-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 360ef4e631d47d5c82422e500228c8ae3d274e5219b7534e524d9f3f79761d5c
MD5 e6b7869185861a84d6f0ebd155c6f76e
BLAKE2b-256 73e2da5e2092cd60fe7a663aa116d1f1e8c0148afffa2cc6c83c6c808743845e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp310-cp310-win_amd64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0142e2c313a0888e59e1a69da681934b6d6041f672d4337576618eabb81fe0d7
MD5 070272d0e993d072d1ab6b9cb4b23187
BLAKE2b-256 e535290a22f4660497810823e0f47d5f14d983108f849a596cffe479d8c27567

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cae6eb9a70666c0a78322732cfce08e607c0d596c390b11010e9083aaf9fb686
MD5 6fe78c708dc06c28d1a39653a3b0b0e0
BLAKE2b-256 1ea4c62cf86c5766a92afe47a7ac0bb28f45413d6fb07902884c390221fd6f10

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 64.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nulapack-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4349022caae4127e7b2fbe8f34aeed56af9ef3f219cd9b0e40d244cbed5f037a
MD5 008da41042d803df09e82eec86921c87
BLAKE2b-256 570a0607f1fde61ffb936a36479b5046edac7739ce0857ade823aa2d9fc63d5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp39-cp39-win_amd64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83950995f48a4cbe7ee6b1e4e99fe1c46161ec70827163a67e595c6ccf096ed8
MD5 f702c72188e008821fee31e1d813e541
BLAKE2b-256 6b1871d4f39f62837e3a6c0c70ec9e162d8f40d3bac53285ccef3e1a03632029

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nulapack-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b42df477c9ea44859bf18f267b6e960b69b708634d43eda96ee783ce400b52b8
MD5 83fd97dd5fc74745976060653ec6add5
BLAKE2b-256 effc17ce4539d99c3ddaccc9686b6638cd4826e69405ace896bde8fe5f7b1611

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-pypi.yml on NULAPACK/NULAPACK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page