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

Uploaded CPython 3.14tWindows x86-64

nulapack-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (78.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nulapack-0.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (77.7 kB view details)

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

nulapack-0.2.0-cp314-cp314-win_amd64.whl (88.0 kB view details)

Uploaded CPython 3.14Windows x86-64

nulapack-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (77.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

nulapack-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (76.7 kB view details)

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

nulapack-0.2.0-cp313-cp313-win_amd64.whl (86.3 kB view details)

Uploaded CPython 3.13Windows x86-64

nulapack-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (77.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nulapack-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (76.7 kB view details)

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

nulapack-0.2.0-cp312-cp312-win_amd64.whl (86.3 kB view details)

Uploaded CPython 3.12Windows x86-64

nulapack-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (77.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nulapack-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (76.7 kB view details)

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

nulapack-0.2.0-cp311-cp311-win_amd64.whl (86.5 kB view details)

Uploaded CPython 3.11Windows x86-64

nulapack-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (77.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nulapack-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (76.5 kB view details)

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

nulapack-0.2.0-cp310-cp310-win_amd64.whl (86.2 kB view details)

Uploaded CPython 3.10Windows x86-64

nulapack-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (75.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nulapack-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (75.0 kB view details)

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

nulapack-0.2.0-cp39-cp39-win_amd64.whl (86.0 kB view details)

Uploaded CPython 3.9Windows x86-64

nulapack-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (75.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nulapack-0.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (75.0 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.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 89.4 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2aad7c275db91f74da06b7f2fa605a02f00689334d664d82fd4ed978ac618f1b
MD5 c30b4499a643ab00de38309c1cd14960
BLAKE2b-256 8d177ea20bb00c11dd56bbdb9a62a7cd027ddfe62b9304d22b804e274bfe080a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f53f0229ba6f5fb0ba49feb62ade14929ec5395184325f2e64bd3994510c9ac8
MD5 723e7f2a5764a47249264361218dd691
BLAKE2b-256 897cfb62f212d7afaeaa679e5869445f4a4c6db84cdb8934ae9f6dd20d208341

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e76f8fd3041c247af3843f542379db23ca5e9283ff2bf58d1e441860d27a51d1
MD5 8a4d7b349b2ebe3e3ab2ef93e1e5db53
BLAKE2b-256 cb76cd3842fa19cf9d7d615b4284f94622000c8bee7d453a43d926d8d8390eaf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 88.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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e539b9cae5d7a071e55e88821340d07d01d87433f7b3611459179c3f18460142
MD5 43a481ff93032193b0c589a20d681c75
BLAKE2b-256 57ce97e3279ede4033d132a017fd67295fac575517825e73e87f7517680f785d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8179cebb98e63bfc55272a92c8c079cf9ba25a96c417861407fdc6b4bd249a2d
MD5 d83c5e385227cced05165f624fd3f830
BLAKE2b-256 b995b0d91e503fd7e7babc718d0ad5527a7de18be8ceadf7377244c574f2704e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43381b01b0cf5b435697878f4d7e2869ce85641b80b5a07fe07db0569614f400
MD5 115dab0d42b3d443e94af26da57ed586
BLAKE2b-256 5b6a6204862bae732503853f62f9fdc0651990e9801e3dc8f03baeb504b54e0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 86.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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e69f88f03f25690e32ed87bd85de47efd478b743147dad4b24c417128b10b590
MD5 53bd9fef8870251614feb6de6527bff4
BLAKE2b-256 aef4bfc52c35c758dbfcc7c2c6f45d2fec212673d9e31b6ff3682d6756fdf56a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d8906997608a36a38394222ef2674a2321eb1696a7535fc5bbf4a24dcaffbe7
MD5 95cdb112d7f6b7cb8342bee3a960a751
BLAKE2b-256 c414926d02a8820cb75d28fff774616f5c423f259bf2dc9ce806626c4a37009f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e7477db8a11e6120850164ea95578721fbf44de1ca712521830af83161e1e77
MD5 f54789987d6a1d4789005b850f57267d
BLAKE2b-256 557aa803e9ec075e7f69354945c351cecf89b9375e3f46b0db47a8705c66532f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 86.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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e981553d93e9810cf03946b3c827bd73e3d6fd138202e959e3f38168dd3e51e1
MD5 3be599b6cb6ac541f7cc688e29c69871
BLAKE2b-256 11ede4c553a87885ae0da8d4e2d236f43c60e7db6280e5e22575bcf8c0357e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78c18a497cc629a7e8187a9eae035bb66bb9f732e75e86b7e911b823e2f0b0fb
MD5 99dcaa88a5efbadc05d0588c38292941
BLAKE2b-256 ad7670f50e976d2322320de8bb5dd2370a3de9f06440f226bf680936735a24b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2178ac34ea9deb00a5e6443f34c80381acc5eda2fd55726983c7ff44cb5f07a2
MD5 a283d11d1ddfb9de02a4209a7e59ec0f
BLAKE2b-256 b52f8c556f3969e152b445c4a8a36d23dcd710f309c3c56dec5ab53c29eeece4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 86.5 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cc8b5c7fd5e3aacbc51ddcaa8cf7ae8dd79a2f1b938c5f08b76f88f9a17addbb
MD5 1d348a8b7c74139d0b961ce05d89834c
BLAKE2b-256 1d8980f3132d454b779e11e04fd391981ce3a47ec173bb52b9f076d1c782ddcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ef044065d0ada23dd1715189d17349722430744ba2fe93c3e58eb0f4ec935e4
MD5 3a6c82781eddbb78877f23ea0756cc99
BLAKE2b-256 b2bd0f7906c89ff08f913954f430c7e080ec0659042f1d2153ce66dd63cfb855

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2281352e342e504a493c5464a423bf08e39d209854ee88e35131c5f7c97ce063
MD5 978b072b69f1fc1161d9164e3f22d618
BLAKE2b-256 74875dcad5bd433438b37595abbf8ee79b0dd201c68d20fc1508f96459883b3f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 86.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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8cabfa2265a659d7219b8045e9a19faac488b4759ac6e89172ea2c1d85a84c68
MD5 6fc826da5799be87a598564d8b372fe8
BLAKE2b-256 6b8ccd95de617d37ca964c8327d7fc195bb08c7efdad905e104a9fa48675e920

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed520d48a3527410837ab5b4cf1ee5a2e7bb4bba82576a9c67228c9dc5f1d6b4
MD5 b1253ed320656cd9bb02555e577e4f88
BLAKE2b-256 af9be8003eccb2dc49146e4fdeda74d66c5f5eadc4e0fda73c7563b6a020d750

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed3effd6e9082048062d3bcdb788729e2f2ebdee15e6226c89e0405283474c0b
MD5 b5ec6f0215da7d693da6290953b83ff8
BLAKE2b-256 bdec3ec16031bfd164fe507f4b7012056c991bda8c0a89f0eab6493ef36ff8af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 86.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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ab1796cbf06dbc27a3ff0c1ed4c6e6eb36efc790161694def3fd9d683c3daae5
MD5 e01855cc3a0591349c9aad6990362b4f
BLAKE2b-256 22fc62200d587ff2373208f0d6c1ee48c07a19df271e5add4004a62103820091

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a83596c2f32f20cc5f13fdc03787c23d5b19684128b40af1aee10c62c72b3890
MD5 13f161f71e4988d34335696887300997
BLAKE2b-256 59867f32c04d8f43cf43a0357039279aced5662927c35a5da15bbff77ada2da8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.0-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.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c9ea5486d8d23fdbee983ceb07350494da53767a68e8d22133a51a54d40a3cf
MD5 0c63559e4a41f44210dbec3413e18658
BLAKE2b-256 c37e490b0748da009098d9ae0f4db0849f910404b69eab8f209b22a986cc0171

See more details on using hashes here.

Provenance

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