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

Uploaded CPython 3.14tWindows x86-64

nulapack-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (53.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nulapack-0.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.9 kB view details)

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

nulapack-0.2.1-cp314-cp314-win_amd64.whl (62.8 kB view details)

Uploaded CPython 3.14Windows x86-64

nulapack-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (52.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

nulapack-0.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (51.9 kB view details)

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

nulapack-0.2.1-cp313-cp313-win_amd64.whl (61.3 kB view details)

Uploaded CPython 3.13Windows x86-64

nulapack-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (52.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nulapack-0.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (51.8 kB view details)

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

nulapack-0.2.1-cp312-cp312-win_amd64.whl (61.3 kB view details)

Uploaded CPython 3.12Windows x86-64

nulapack-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (52.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nulapack-0.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (51.8 kB view details)

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

nulapack-0.2.1-cp311-cp311-win_amd64.whl (61.4 kB view details)

Uploaded CPython 3.11Windows x86-64

nulapack-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (52.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nulapack-0.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (51.7 kB view details)

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

nulapack-0.2.1-cp310-cp310-win_amd64.whl (61.2 kB view details)

Uploaded CPython 3.10Windows x86-64

nulapack-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (50.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nulapack-0.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (50.2 kB view details)

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

nulapack-0.2.1-cp39-cp39-win_amd64.whl (61.0 kB view details)

Uploaded CPython 3.9Windows x86-64

nulapack-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (50.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nulapack-0.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (50.1 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.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 64.2 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c9f17360c90b3e6ea1fbf0b2052a3048ecd585d76216f77bb76d55db4ba8c1e1
MD5 939ee53cfcfe59b91e0687d83b770eb1
BLAKE2b-256 ffcb60db9513062a95656396299f26b8e868f6f18f43360558389eadef8df0a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d363f7af2381dda2408241f04cd40db81bffc587a89f90319c809d5f2db18fb7
MD5 50070e7406396370d9448c4427428ba6
BLAKE2b-256 04f8327a5c39346cb82c82f455a2c02ba6ae698c2c3a0bd75311ef3463884cdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c7c2348dc6b9996f2cde00392685d1506d3bc311e8bf50867100f230168cb79
MD5 8f9dbb0d5562f34fb9d63eb3faebcb92
BLAKE2b-256 f2499eb3dc7f6f6752053d19d9d3ada0766125a230f290b83422d156b9a42ce3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 62.8 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7be2259fcd35234a325565aa446a70a7d2c3dffd35c947400e10868c96347c41
MD5 1c0658d30f2e943ca32967641768f4a3
BLAKE2b-256 4f790ba8ff1dbcc6d65708ab431516bb68791fdeea109bde316d5635e10b37e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ec96013cbf1b07a5a59e5c386b7fc08ac7adb44c4def078715d8c258d8a3dac
MD5 dae661b39d7454fd30d5342e8707db21
BLAKE2b-256 08e9c937adc040822043b31dac86daad6a3fb464802c89b2b5b1e2a427483503

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b12c9116ebc6157b34915fcfa98de915bbfbead9987f2fad93ee99b2085bf29
MD5 1cd8ed3c490075a57b5af088f3043eaa
BLAKE2b-256 0b64a95b982aab5179887d19ac050c0e1c4b843b5f6c6f5d601efa13b77cc80a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 61.3 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02a68b45286a993b7d08d958a79e8f578eea9468a2d1da5e6d351b7b126e7a47
MD5 c92d0b582af375c4cafd7a326dc65ee9
BLAKE2b-256 726860ea15089588aec673019cb4d38bc20d206887ca281f27ec3e77c915cdf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62598c4f22a6ce69bae62b88b553dfd376fe627ad9a0ab9f2c461c3ef386963e
MD5 77602a8505b9fb63a8a0bcb557dc7eec
BLAKE2b-256 da96297aa2029bd60974ae0cf640a723ca9861340e6288543899b6784a821c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67eba25486a799e5b24e0b542d303260ea3202df6b0090569face4119b9a5dda
MD5 79c340016dabb1463099205601c1ea03
BLAKE2b-256 4da68183f706c39b16a94a5e02dc9c6de83e2e59556f37cd8c72bb0afebaadb6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 61.3 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ebcde0e5c3fe800f931e6d3f34b3b585fc36a7046fb972a91e4bba6612dab47
MD5 198cff7d7220dab0af8fa52e25fcdbde
BLAKE2b-256 aed3db9de868c3d1c521d8b45388d80d3558eaa436e886a7ca0eba13564f4985

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24b53c6224660729e1bb071a2c9a847fd6412df4c3b4c6f7102af1b8eec3d46f
MD5 2ca81a7b920afee448884e3c4088deb6
BLAKE2b-256 24e0072b56c525b4a9bc22f4318019740d03aaede05d34d14fdb3de0aebde817

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d139f8e37ed734293eac1381c8e8fbd867c11e5f4efa56b3186ffc36efa865b
MD5 c75863db0b04205a08baed2efb2a9d9b
BLAKE2b-256 d58a57739e50c4272f2c652d4960d56cb1331efd9e6777b352655bcb142f11fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 61.4 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aec11e88a6da89ecd532c4a0da3c3e75c15516e731a93e70064a619166f94827
MD5 cdee056304569c32ad8b756de789f5f0
BLAKE2b-256 259bb2c7052dc6a5cf5c2e9506aa978a30253fb72b42054bb43b70c429dd5e2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c397f07235a127f129b3dfda3abfab43af861ef0f292032edc805d0eefdb7ca6
MD5 7904b0e7b085eace48bc14aeb8690cab
BLAKE2b-256 e52244e24793c849f8295907d0d9ff5915ca970b48bba4b6b6764a3bdda26930

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3618946aad2d01cf319f7ea6338bf48dfc63d6336d53aa8e8923e4312f81f1a1
MD5 14c70cd1a25dba1ccc2c0c2351602e17
BLAKE2b-256 05a2fe77918d0f21ec327b9785e87bf0087895ca03f83d17570f9ec6da6ceda1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 61.2 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f2f8bccb8acacb341b8354894dfc9bc2ed270078e5fa6b26ef39805a20ce84b3
MD5 7c788a52329271265b9a223ae211e82c
BLAKE2b-256 259c9591fe8794090bdef45ecacab06ab27c97f02a13f19d0d07424e2b235c70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd3b7fcd061a22e3a0752785f3512c2478be7148cf3eaad9136a2548c2d1e8ba
MD5 3c655bbbff417f50575b11f683d0abec
BLAKE2b-256 a0055d05c7b95a583ce24800be3523dccc7d00b96ec501d821486f060cdb2f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f313790252a86b7602039437e50b7bb37dc3dc6d0e40658a545ab95cfa1a9bc3
MD5 5ec9e98273301f2b5b70e10a4e5e8e27
BLAKE2b-256 13735f507d5d6b01a72fbac8522252866d122059fd11b2fe1484b9ff07c02792

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 61.0 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 59e1cdee94a01965857dcb0b0fac3aeceac8e6bbef070fc63d699b4abca4bea9
MD5 edf91bded842a41a4945d28e27654851
BLAKE2b-256 04f105166b02d2a19a7cd70830e5443a0c2d3abb39fafadead76124d333dacd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93aa58e79e08b299d9c8e3889e351e31ef38717f7ddb61cd858cdcae95a0d6e3
MD5 28acc1150145be8364a46f0e361b4fd4
BLAKE2b-256 61fd142c6c029a7d8d93d8f32cc63b5b1de0b442030618afc7e9f845a18dce2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.1-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.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4dc01cfaea72275dab393bd67be245275ea99504fec6be8972fd91a0c77816d
MD5 48faa2029a430c15bfaa466ed7b615b8
BLAKE2b-256 6e584a76842ee7f3e3f3500289d3262aea1425e7489a1ef6c1e46ef32fb48ec4

See more details on using hashes here.

Provenance

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