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

Uploaded CPython 3.14tWindows x86-64

nulapack-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (73.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nulapack-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (72.8 kB view details)

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

nulapack-0.1.0-cp314-cp314-win_amd64.whl (83.3 kB view details)

Uploaded CPython 3.14Windows x86-64

nulapack-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (72.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

nulapack-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (71.9 kB view details)

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

nulapack-0.1.0-cp313-cp313-win_amd64.whl (81.8 kB view details)

Uploaded CPython 3.13Windows x86-64

nulapack-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (72.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nulapack-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (71.8 kB view details)

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

nulapack-0.1.0-cp312-cp312-win_amd64.whl (81.8 kB view details)

Uploaded CPython 3.12Windows x86-64

nulapack-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (72.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nulapack-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (71.9 kB view details)

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

nulapack-0.1.0-cp311-cp311-win_amd64.whl (81.9 kB view details)

Uploaded CPython 3.11Windows x86-64

nulapack-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (72.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nulapack-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (71.6 kB view details)

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

nulapack-0.1.0-cp310-cp310-win_amd64.whl (81.6 kB view details)

Uploaded CPython 3.10Windows x86-64

nulapack-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (70.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nulapack-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (70.4 kB view details)

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

nulapack-0.1.0-cp39-cp39-win_amd64.whl (81.4 kB view details)

Uploaded CPython 3.9Windows x86-64

nulapack-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (70.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nulapack-0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (70.3 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.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nulapack-0.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 84.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.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c1bd1ea71433e9032e58ea700f317f346c5d69dc58e011f61d218b640846a30e
MD5 0926878569e0f895bdecdaba8a105b28
BLAKE2b-256 4245e8414e20c6ffdd8edad6d9881b923d835cb2d343e2f2155d57eb5a5bca32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92886649e3dc9319c38c84455c172ce2c794e7f4b27ab80bc60323a6ebad8b94
MD5 da28cde56d942b875970d1d2db2aeb7a
BLAKE2b-256 a6f8f3895c500c1a981e3ae3ed8dcda03198d7158b138aa7a154ae2c2d7e2f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.1.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.1.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.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c8840cf72a366de8fa3becc45cd571d9657bdf63463516efdbaadf2d1aeaf30
MD5 5b6a50d56492d38a8a84d64bcfe6a1ab
BLAKE2b-256 36d8f222a0f6b80cb6355d6fb635bc4f7f20899bd6aa0d6e1669aa5b93aad2fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 83.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.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8ea0ef0a27698abae510ad7835be1d888659109d027d96e5ebe6d2700f4278f6
MD5 f29da44e40ad7c2610dfe7b218d51cc9
BLAKE2b-256 8d43fd0190ea0d95b95c54351f93ceed95a3098b6c01bc230073d41ceeb5a126

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce3adb6cd8c1ad0d0ffc9bd03fd5044f80beb5f4ea8b68428b1727cb2317307b
MD5 00446f8ff7b17a8aee22a056b579702c
BLAKE2b-256 96ad7a2e84056820b3252ba657708c903e8617db84c235caa7275ae4da540f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.1.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.1.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.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4038afb1bc8b04f69e40b3745cd2e52daf7b771a41c2783504e4b030137cb1ea
MD5 9e9ad056f79a8fe85dd5ca78a65459e3
BLAKE2b-256 1e3d1f345cf7ffa2715783f8cbd298a69574765a5537e4f823e3e00ef4bac41f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 81.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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ec7142c3211e2afbc1392a50043ace268233aff775593a0f2075bcaf43d68990
MD5 8d9d36bfb8c6110dc4a90ba723668b1a
BLAKE2b-256 2a7357b23be0cd027a9d16a539e03a58e88a8b7814655c591271bb8b065cc150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7832714cc3e9fa9ed74be47c393678db1db79e360790ae1b4f4bc632cd90b147
MD5 86cd95a56a6b5a1231a836dfe7ce5ab2
BLAKE2b-256 f6f3ccd0a490712ada5c4c5fbc5ba780eb4815fd8667f4465183ef2df7f3252a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.1.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.1.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.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12e6266fddc549a6189dad502c7b9629e6fe3a6237830f71070000a389f045dc
MD5 15932cfa41071b97614ba04b8cf30886
BLAKE2b-256 750f38a9b17a390239c1a2de8a113de961e564a236fb8e521691e1000c03d831

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 81.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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3ddfc9ef733d9ca171f6ed08c0bf0a688f138669e99442f0035cdb75ef56e3d1
MD5 20a97274fabf7a26871f0edf45a5f5be
BLAKE2b-256 00a135173fb67e3f54f6d3a912f4fab13ed98fab389cf3ec555b1b9be6b1d99c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bff1d647439b0e4558aa617dbecf0cfb69dfca35fc88a7201aa242916660dbc
MD5 ea163a106d6641f41177c64deb75196d
BLAKE2b-256 a4dd3fa095632e77259a19893949b15183ae19501c963ddf00caeb56cebbfca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.1.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.1.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.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbce0dc73bad0585c3f96dd866e130682ff74794f0b98108d7fe18679264db41
MD5 32d403b4889a81dd8fcc9c567fb497f4
BLAKE2b-256 0d690ac6891b2556f313b60e1be44df08c7c3b91996bbc24a7bbd827fe0b1ed5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 81.9 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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d32ee7ca33af7d841ac3e5be5b15a3d17bf4d7c6a380ed35c4ce2f68094fb8f8
MD5 b796e53e1c7f85ecb74670808459ec30
BLAKE2b-256 ce13c2e93f49a4d3e5760fb405821096af91891b4892dab42693e19b90abffb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb92aefef56175f14c191d8ebcc9bbced8455209cb6dad0f5ff7a474bbc6a5f4
MD5 a1c70d7bbe0bb6b83e4b41d2a10c0e57
BLAKE2b-256 eb4a7b9164144054bc05118b93cfc8ce48813e7f17449574469133777cfe4f30

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.1.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.1.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.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 641d4f7cccebaea766e604badf906d7c9e900e9e3833a3762cd5e97eaf5b33aa
MD5 dcfef80379c2c4aab810c2aeec92ba84
BLAKE2b-256 d54b7db5193e028e8c2ba97ee53663739de462d8818fb2de0c14b42317973ebc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 81.6 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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03799096c369184b46d16548dd2aec86a44be25707b3bad5530f8f8a5cacf13e
MD5 4c9f01a7572424f958c905adf8555207
BLAKE2b-256 1f2d0c152e3767f5e931b3e8aa849bb82d2f665eb4ad294d66f47f738c399da8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e529a0c47263386507c55fcf33af1df4464e48bc8c41d5c9e31139c7d90e9d2e
MD5 6a3dfc24d9a18087c4c0acdd85516a7f
BLAKE2b-256 981a5bdfeb15c9685cf9105f74d56b296a78067c27f842d0d8741ce51cd79633

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.1.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.1.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.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3b901a9099155ebeb429dea880d22f51cf007a9db1d0db2f4f3d7b14f41b80a
MD5 88673fb6a8940304bd45c3d1ad7236fd
BLAKE2b-256 9cceaaf6ac27e12753b009142bdf85ee91ff90bae59f0953816f27da651f0e92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nulapack-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 81.4 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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 705d03582fd2b1848db9f009eca27b38293e88206eb9d62e88a6d4e2a2dafc06
MD5 94d99ada75d625a7600960d888fb2a00
BLAKE2b-256 776fb6b60bff57cdad5770aada79ece4e1b03474e6446d7762490b6d27e733fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nulapack-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9522dee7d5bf87d05042017c3f23a7c1208e48b247d61325d048a008ab3f30b2
MD5 26a9267a9fb1c2b2cccacb1c3ae97dfe
BLAKE2b-256 0f96b1c939f41546fc7e9825df61f835f227031bd6af64f5c1342c4542b2f9e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nulapack-0.1.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.1.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.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09d17c31acdb6f075f6b0817889f3656c41fc000143054f3ee5417b80e37541f
MD5 83f137aa30a10d247d7d7fa26d012d8e
BLAKE2b-256 8bf60a4ba0f80837787113107c6a550f1801b0729f18109990058a032ac331fd

See more details on using hashes here.

Provenance

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