Skip to main content

NUmerical Linear Algebra PACKage

Project description

NULAPACK: NUmerical Linear Algebra PACKage

Tests Documentation Ruff

codecov License

PyPI Downloads Python versions

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.3-cp314-cp314t-win_amd64.whl (67.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

nulapack-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl (57.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nulapack-0.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (56.4 kB view details)

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

nulapack-0.2.3-cp314-cp314-win_amd64.whl (66.3 kB view details)

Uploaded CPython 3.14Windows x86-64

nulapack-0.2.3-cp314-cp314-musllinux_1_2_x86_64.whl (55.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

nulapack-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.4 kB view details)

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

nulapack-0.2.3-cp313-cp313-win_amd64.whl (64.8 kB view details)

Uploaded CPython 3.13Windows x86-64

nulapack-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl (55.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nulapack-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.4 kB view details)

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

nulapack-0.2.3-cp312-cp312-win_amd64.whl (64.8 kB view details)

Uploaded CPython 3.12Windows x86-64

nulapack-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (55.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nulapack-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.4 kB view details)

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

nulapack-0.2.3-cp311-cp311-win_amd64.whl (65.0 kB view details)

Uploaded CPython 3.11Windows x86-64

nulapack-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (55.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nulapack-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.2 kB view details)

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

nulapack-0.2.3-cp310-cp310-win_amd64.whl (64.7 kB view details)

Uploaded CPython 3.10Windows x86-64

nulapack-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl (54.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nulapack-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (53.7 kB view details)

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

nulapack-0.2.3-cp39-cp39-win_amd64.whl (64.5 kB view details)

Uploaded CPython 3.9Windows x86-64

nulapack-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl (54.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nulapack-0.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (53.7 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.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 67.8 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 832c5fa56b59eb70f2e1b180972d38a4cfac3fa539373715bb7273319ccbea49
MD5 ab3cfb0af7d2df8b4a5ca40f1a4370e7
BLAKE2b-256 a5846525a1a1a092bfa21b9020b1d0649ab403338ebbcb6acd290e6ea34e135e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dee5260e98ec5ac993e5c4249b88e7ac9c1a285529b4ec857c6d3bf2d0fab2e2
MD5 8775eda9567a41d7f789a52552717b7f
BLAKE2b-256 2622e09a42fdfc45c98a749c5f78ed174300662f59f7ce47a88a750e1e485a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c977a4aadb9f10a92ca104c30eacc46ed22326584a13e2c333f11ba403e1790c
MD5 661a9bcaaba36c3ee6e3372a99e2e500
BLAKE2b-256 d33174a6b25eddd5f40e379a2aafa999e7ee7a32c4ef56cbe7a726ffb1333f7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 66.3 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 067b4bb0935c1c39422d3ddacbe502c09fc3baed5e8a14a71c1090c886905cf0
MD5 74a1dc4f30c0c71ab8d09790e554fc01
BLAKE2b-256 f75c9f8f46c80b68cc5faf5096a6ddab91df0d1fcdff4f39d90887d0c89c4f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d694752bf309ce45a2824a5130ea87d6195a59215f33db8475b2c8ae510eadd
MD5 79160d7e84a1f8c338cc8b7c872b9e51
BLAKE2b-256 d32509f0408642813d4889e91de164caae1c4d15047435bd8d33a1c85e19f4a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d494d9b150a51c2c8418b4d2e1b4b03f8a553c8778a2a1fc5187762358afc336
MD5 ef27dd26953cba02772def8450724fa5
BLAKE2b-256 3530a67ae4cf7b0ca54d2b25cc25272585d3328f23aed054562d29f5c6824560

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 64.8 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd63c4998e32a0971bcc8683b8e54bccaeeed528662909183475d98e6a9e1cad
MD5 5703cff3fc7e3b1509d35053c3ca99fe
BLAKE2b-256 a0ceaeae75d6790c185b2847a9faeae0b82d9cbe1eca9373fb3546b4a01d38aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab0f9ec5f1b136e0d869c38e6be82c77899ae4f45903fd1c7e705ac6e0a7b979
MD5 cafba456efb53d80e96cded680cbdb3e
BLAKE2b-256 f614571e2cbcf7c153a06bee2dd6dbd14c14e793fb5cddd90d061af333b12a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12b944597fccc968170463eed19d2f44415969f6b7096469d646b3b8af753f92
MD5 5baf1cdd2c844a758b33ae5a772aebaf
BLAKE2b-256 ab7ffeb81e4b1d378bc53ace244a89518dd24f4460f384dde24a3e10586debdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 64.8 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 103085b336ba9cd4951a4ec3fd55b1df77d181d73cbc0f4d46638ef6a1672e9d
MD5 b408fd2e2b9145737e6db07f7f19f6fc
BLAKE2b-256 2616085237e16df34ae2f2a1c06ab116942c627675b6e4aab0360d8cd794cb70

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55b32179db7bf032358ca8c3ac7704010869200929cf6e23c21fec8b6ef7c9a6
MD5 e09fdf86f69c47c9bec4e89aedfd1586
BLAKE2b-256 53b416c55dcdc8d7035c209ec159d3e531b11f7b5bb446d632c91fc563d79efa

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5bfabfec888b75b56c4168a0c94fa40456c89d63791a30e37a69cd62aeeb7820
MD5 1e63c48c18ed2253e38a45ff9310f36f
BLAKE2b-256 b4dd365d7a8ee2bf7cb1cbabc76a24eac31d7e2e881001e631ebb017009c6802

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 65.0 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e25a82f9b872fa2aa88ca7f47c8b36f6d88d8d04c7f7f65d84e8ea93b07d03d0
MD5 9b97ff70b115cebd28cd4831588856be
BLAKE2b-256 36132b94bffc89227b084fd602b6f1606f59a2542dadeebb794622b757193d46

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87ad303f93b941c4eb7bb42f04c596406699545aa5f4caf39fccb086ab795c6e
MD5 44fa8442a9606a430f9f82ee38e7b1d3
BLAKE2b-256 34f4379e6d168b96d7b0ba4192a5f5b313a83b177b82627bf948a1b47d26ed4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8a37ef6d6f89ab8c552023679bf5a32b97509825ae236524581367d6fd5600b
MD5 256393e1522dce5e01dd55c86474b47a
BLAKE2b-256 f2a84a7914c35d951545a3f2692c0ed2fd8c7cfae3a152ca83f956b72f66d4c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 64.7 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1068c2f7b23ee48c111359d6466c9f5559bc7673fe1807887d90f163750f398e
MD5 6d06049799f24eb4ff69b5645cd51077
BLAKE2b-256 3e6c62199845e0cbe28b0f9a614386cdea8ae7b6de6f2249058e3b3c17f01526

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebbfefbd4aee5e3aa8f1857b1615da9ade6dfbd6f7643e66d3293a9b8f26c550
MD5 ae70037229e7c3f2d93cf79b8e80655c
BLAKE2b-256 8156c83729885f22f0eca4a84288145d1ae0b02b1dd0003cf238c682e5bb1699

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df49ae9618110e8253cf9f132d430423fb4308a65ff0653ed541a4b13a550187
MD5 fb1d1ae96d66f0c1b928f4720ad62534
BLAKE2b-256 e9a9fc5ce183d7ad264745ace6af486b0cf822871a3423fbdf7956bff1adcf6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 64.5 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e16ff4a6dae3025bbc9576c6b556b119a3531f68ad4d6fbe8182ee4840616b32
MD5 1b56efb7bb39fd785ba4c6670a0bb438
BLAKE2b-256 101b34e8413e280bdcbce3ec420014d727bdec0d915f3177cd7e5168c0cc976f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca4f0538bc9799cfaeb782bc3afb6a73bdd6b4cb716d9fc4f9215119be2719ba
MD5 55de6e346334d48bc336e1d457a50281
BLAKE2b-256 6107aadb82b08049dd8ceb9338a178e9b62a0b0d133d7376a7a850c5a478ef51

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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.3-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.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3b55ccb1386b45dbbdfe10bbc7f568de3e99fa36fe1aeb1ec5238f7d56cbc4e
MD5 2c204537c21cc406684bb147a9cd874c
BLAKE2b-256 86f2b07b50dd9887f33f16dca7487188b2bf1ec7ddc8bd56ae0f0fb73e801c00

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.3-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