Skip to main content

NUmerical Linear Algebra PACKage

Project description

NULAPACK: NUmerical Linear Algebra PACKage

Tests Documentation Ruff

codecov Quality Gate Status 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.4-cp314-cp314t-win_amd64.whl (67.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

nulapack-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (57.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nulapack-0.2.4-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.4-cp314-cp314t-macosx_15_0_arm64.whl (44.8 kB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

nulapack-0.2.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.3 kB view details)

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

nulapack-0.2.4-cp314-cp314-macosx_15_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

nulapack-0.2.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.3 kB view details)

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

nulapack-0.2.4-cp313-cp313-macosx_15_0_arm64.whl (43.9 kB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

nulapack-0.2.4-cp312-cp312-win_amd64.whl (64.9 kB view details)

Uploaded CPython 3.12Windows x86-64

nulapack-0.2.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.3 kB view details)

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

nulapack-0.2.4-cp312-cp312-macosx_15_0_arm64.whl (43.9 kB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

nulapack-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (55.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nulapack-0.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.1 kB view details)

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

nulapack-0.2.4-cp311-cp311-macosx_15_0_arm64.whl (43.6 kB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

nulapack-0.2.4-cp310-cp310-win_amd64.whl (64.8 kB view details)

Uploaded CPython 3.10Windows x86-64

nulapack-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (54.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nulapack-0.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (53.6 kB view details)

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

nulapack-0.2.4-cp310-cp310-macosx_15_0_arm64.whl (43.6 kB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: nulapack-0.2.4-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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c9ad3bb5609974c08f05aad2880bf9f535b254aebb46ca195dce0924730f35a2
MD5 449109be6034eb0ef6ecd9204ab37d12
BLAKE2b-256 2a7b203872482b018d565b62eefcb678cae870683931e31a46eafd5e899ea01d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9e10de2668fb0a9d26215af04ae837d7121102b898af1236064e48a852c807a
MD5 f05f51618101a548cce18eec5f32c640
BLAKE2b-256 8dcfe57c6e3c8e03bfbfcfa74cc6d0974eed70a2229383b82913f4e0521b4737

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-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.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f58702b31a9abc5efee96eb7bde9ca5df13b4e6060ae3174c1141562e6e0053e
MD5 feb3bd79ef5b6f75044aaf36be61a1bb
BLAKE2b-256 c7ba103204333204470767c8b8224418116f08dab89970c375969267439d9fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.4-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 28c1e12a01aa2f26c9ccdf7969a16869dc3108b1d581bc5c3619a7c21232bde5
MD5 07e764cf9a3f4dbf592c2724550d8b1c
BLAKE2b-256 6b4c48ad6119e3dfcea38c8c11eddc7bc5f7a1cc000602e8e49b05e058b81c2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-cp314-cp314t-macosx_15_0_arm64.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.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.4-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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 54084730d5f34334754622f3aa33ac37141db12fc09cd659cce34b0d49499841
MD5 dec526ca2c79fa2b7e81b348aed77c19
BLAKE2b-256 63a97981f2aa917ea0a86e01f2ebc6e29651b74a55ccb38b2c2e41d70f6552ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5967243605eb2b7e9d49d4b8fc1735397392b0f6c413b5636232ed77ea628c4
MD5 3ddce3b988d06f517a61799adec8b7ff
BLAKE2b-256 2da5fe415269bf3551c38c10d258e807302818b3b70f602aa39d3c858c2c9dca

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea5fb540bd1f41d057efef37cac7faf2d3acd0b2bae242fb24d67d34659413c3
MD5 93c4822d5399419c6a4a7b286c828604
BLAKE2b-256 372be82093dc1e363c63b3a593a4fc8c08977c259c8312ab41f43859f2631d7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.4-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 59a2a180881386342c0aa3e439d8575def7000627a6166b0a9c4e22220821eff
MD5 c63c0118c3a60d8ccc5a2f3c7ab46a7b
BLAKE2b-256 dffbca22f15a89516716343e483bc11c2890ae6c57214a6758eb5dba6921d4e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-cp314-cp314-macosx_15_0_arm64.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.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0081540785ec55c03d7cf98116dff8590bf577a67487889c84fcf5734b790a9c
MD5 57e79158df9b880ec289a4df6bbdde7a
BLAKE2b-256 6990f4f81ca59d0777859d088c33f26e6b4da7781717a2549905cf75556ce2eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd39b8bad01e0a98b8da5d671a4bfe1c941c8da35a0ab49699ad3c51f227152a
MD5 d6a07334b8e499a41f79144ef3670cf1
BLAKE2b-256 e3f1dbacf92c66cf11ffbfefd31f79e132244f28b727e415d8777d27babc10d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28eae3830e6f8b0e09c577fe20482ebce6a5b84940e0fdc1a797c95df598cdd0
MD5 105220f562c1b067fc29d0d357a5db61
BLAKE2b-256 c29a8c7dd70e6fdd927455af0e93c3cfe46761194cb6ff7fa1c4201d6c2f4b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.4-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a74125a71c9db662bb46da56d07edbc73bc0f33c68c558da8cc22b2e9b3709ae
MD5 8719d6a8de0260e59e494d0935bb7ba5
BLAKE2b-256 f74d760623e64eef653bdd8838c445a642592464584bac7ac92af410bc985383

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-cp313-cp313-macosx_15_0_arm64.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.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 64.9 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6bc7f709733a621192d6a4268cc6da337bc4c1025a6fb3d2e35876e926083666
MD5 9b7e5f11b87b2d3de7531fa6a8bafad3
BLAKE2b-256 87902b30d2d0eea56b6e57dc7f163a13f75323ed6844577555cf62338be71235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 369afe5cdc09607be0dbf84bbd3b78dedf63be0d4140cf0090b47a05f4ee46d3
MD5 7b55309ce41099dac0117c087519f848
BLAKE2b-256 4b793492aa0ef756bcb3a95127200459bf0529c2402fd715f420503fad507880

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0091fa57ee41b58a3eff3a8ac0319f3df5c1872925db3e8855b75085ea96aaf0
MD5 61e401a9de24468b27bf446de5119782
BLAKE2b-256 d754447be9bf7791ea1c42fb358a6218d51713dceade42b56fd09834f48afd81

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.4-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 83d25ca9fc23aede42ebbf390ea12f193fac497026acf830bb1679df61d6a7b5
MD5 58bd2a37d1e6962cf2624f6acec74576
BLAKE2b-256 e4bb475ea3ecb0f53f9124a8d5ec7811a1ccd6e3cd1bde2a2c022d0e7fecc822

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-cp312-cp312-macosx_15_0_arm64.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.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 06a77ac8f2ba368a998640e1a104167ab15120d4411737a9fa9a614f9311a523
MD5 4a843498b5bc5af8c364f9cb00c14e83
BLAKE2b-256 76ec8d8b4ec86ce9e2e3191156746846cc427aab708adf8879a17e07581efac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 784cedfa14845e52b0c47c9080a11a2b79176f7cffb9e064d134a389b741b903
MD5 ad342c54f80cae030bc764f1f883a4c0
BLAKE2b-256 3b877a4766ee449134c23af567ce321bc369735e4c8f62693d7e5d5a10c0c2c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53b0c7110c0707a536ff8824a59688b1815eedfc3e39ed3412ba5467d02e6439
MD5 bf66303cf88e4f4b6fdc24fbc570f181
BLAKE2b-256 b9a5e4827978230d686c4116e665c73db8dccc1f363840e9161b0d1641217a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.4-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 89cf9d2d5d3d6bdad223733aa42db702d4cb82c347947501afa45efa370f2e80
MD5 bd60768a11dc158ba50f6d63cc05b497
BLAKE2b-256 b549279748076f188fb1c2760430d5490db4dbe4518c2daabd7d9649bddc91f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-cp311-cp311-macosx_15_0_arm64.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.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 64.8 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 997022c865e91d0d50c66547869de2e476fecba708777961d289d3aa9773306f
MD5 b37c4d3e81ad3fb0ec7f03fa9ad92514
BLAKE2b-256 d3faf3a570ac73b726707fdcc6de73ce1a4ddc56f1f91bcf2132e85250795296

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6b495ce7effdc16fa01850fa187b13d6ab32aa6923344a9b02908696c1b11c3
MD5 a1079b3fbbb5ba1584aa4e05848023dd
BLAKE2b-256 065ea2f1e5dde40196c89e63edb433156672c356089704904509a2ef4532bee0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b7e8a4fffb860cb0195de8734c41641cca189777fe8d4f280febb5e35da47ac
MD5 25dc512196b25ee4722be19dd6fe66f2
BLAKE2b-256 b635a29da7ab9f76c18697d40fb1f14f7daa76ada4558bf92db8afee8b3fb3b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-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.4-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nulapack-0.2.4-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e631d5d237b958a0c1cfb9d4b137a82e2c14291c98a83b8098ee42d71c756210
MD5 980fe83943f027b33076a4f81342c6e8
BLAKE2b-256 ee89307e6695c3a6fee5dca413d90bd0c1ba9af1755510b37235651d019a2e31

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.2.4-cp310-cp310-macosx_15_0_arm64.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