Skip to main content

Python bindings for MPI

Project description

This package provides Python bindings for the Message Passing Interface (MPI) standard. It is implemented on top of the MPI specification and exposes an API which grounds on the standard MPI-2 C++ bindings.

Features

This package supports:

  • Convenient communication of any picklable Python object

    • point-to-point (send & receive)

    • collective (broadcast, scatter & gather, reductions)

  • Fast communication of Python object exposing the Python buffer interface (NumPy arrays, builtin bytes/string/array objects)

    • point-to-point (blocking/nonblocking/persistent send & receive)

    • collective (broadcast, block/vector scatter & gather, reductions)

  • Process groups and communication domains

    • creation of new intra/inter communicators

    • creation/query of Cartesian & graph topologies

  • Parallel input/output:

    • read & write

    • blocking/nonblocking & collective/noncollective

    • individual/shared file pointers & explicit offset

  • Dynamic process management

    • spawn & spawn multiple

    • accept/connect

    • name publishing & lookup

  • One-sided operations

    • remote memory access (put, get, accumulate)

    • passive target synchronization (start/complete & post/wait)

    • active target synchronization (lock & unlock)

Install

Wheel packages

The mpi4py project builds and publishes binary wheels able to run in a variety of:

  • operating systems: Linux, macOS, Windows;

  • processor architectures: AMD64, ARM64;

  • MPI implementations: MPICH, Open MPI, MVAPICH, Intel MPI, HPE Cray MPICH, Microsoft MPI;

  • Python implementations: CPython, PyPy.

These mpi4py wheels are distributed via the Python Package Index (PyPI) and can be installed with Python package managers like pip:

python -m pip install mpi4py

The mpi4py wheels can be installed in standard Python virtual environments. The MPI runtime can be provided by other wheels installed in the same virtual environment.

The mpi4py wheels can also be installed (with pip) in conda environments and they should work out of the box, without any special tweak to environment variables, for any of the MPI packages provided by conda-forge.

Externally-provided MPI implementations may come from a system package manager, sysadmin-maintained builds accessible via module files, or customized user builds. Such usage is supported and encouraged. However, there are a few platform-specific considerations to take into account.

Linux

The Linux (x86_64/aarch64) wheels require one of

Users may need to set the LD_LIBRARY_PATH environment variable such that the dynamic linker is able to find at runtime the MPI shared library file (libmpi.so.*).

Fedora/RHEL

On Fedora/RHEL systems, both MPICH and Open MPI are available for installation. There is no default or preferred MPI implementation. Instead, users must select their favorite MPI implementation by loading the proper MPI module.

module load mpi/mpich-$(arch)    # for MPICH
module load mpi/openmpi-$(arch)  # for Open MPI

After loading the requested MPI module, the LD_LIBRARY_PATH environment variable should be properly setup.

Debian/Ubuntu

On Debian/Ubuntu systems, Open MPI is the default MPI implementation and most of the MPI-based applications and libraries provided by the distribution depend on Open MPI. Nonetheless, MPICH is also available to users for installation.

In Ubuntu 22.04 and older, due to legacy reasons, the MPICH ABI is slightly broken: the MPI shared library file is named libmpich.so.12 instead of libmpi.so.12 as required by the MPICH ABI Compatibility Initiative.

Users without sudo access can workaround this issue creating a symbolic link anywhere in their home directory and appending to LD_LIBRARY_PATH.

mkdir -p ~/.local/lib
libdir=/usr/lib/$(arch)-linux-gnu
ln -s $libdir/libmpich.so.12 ~/.local/lib/libmpi.so.12
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/.local/lib

A system-wide fix for all users requires sudo access:

libdir=/usr/lib/$(arch)-linux-gnu
sudo ln -sr $libdir/libmpi{ch,}.so.12
HPE Cray OS

On HPE Cray systems, users must load the cray-mpich-abi module. For further details, refer to man intro_mpi.

macOS

The macOS (arm64/x86_64) wheels require

Windows

The Windows (AMD64) wheels require one of

User may need to set the I_MPI_ROOT or MSMPI_BIN environment variables such that the MPI dynamic link library (DLL) (impi.dll or msmpi.dll) can be found at runtime.

Intel MPI is under active development and supports recent versions of the MPI standard. Intel MPI can be installed with pip (see the impi-rt package on PyPI), being therefore straightforward to get it up and running within a Python environment. Intel MPI can also be installed system-wide as part of the Intel oneAPI HPC Toolkit for Windows or via standalone online/offline installers.

Conda packages

The conda-forge community provides ready-to-use binary packages from an ever growing collection of software libraries built around the multi-platform conda package manager. Four MPI implementations are available on conda-forge: Open MPI (Linux and macOS), MPICH (Linux and macOS), Intel MPI (Linux and Windows), and Microsoft MPI (Windows). You can install mpi4py and your preferred MPI implementation using the conda package manager:

  • to use MPICH do:

    conda install -c conda-forge mpi4py mpich
  • to use Open MPI do:

    conda install -c conda-forge mpi4py openmpi
  • to use Intel MPI do:

    conda install -c conda-forge mpi4py impi_rt
  • to use Microsoft MPI do:

    conda install -c conda-forge mpi4py msmpi

MPICH and many of its derivatives are ABI-compatible. You can provide the package specification mpich=X.Y.*=external_* (where X and Y are the major and minor version numbers) to request the conda package manager to use system-provided MPICH (or derivative) libraries. Similarly, you can provide the package specification openmpi=X.Y.*=external_* to use system-provided Open MPI libraries.

The openmpi package on conda-forge has built-in CUDA support, but it is disabled by default. To enable it, follow the instruction outlined during conda install. Additionally, UCX support is also available once the ucx package is installed.

System packages

mpi4py is readily available through system package managers of most Linux distributions and the most popular community package managers for macOS.

Linux

On Fedora Linux systems (as well as RHEL and their derivatives using the EPEL software repository), you can install binary packages with the system package manager:

  • using dnf and the mpich package:

    sudo dnf install python3-mpi4py-mpich
  • using dnf and the openmpi package:

    sudo dnf install python3-mpi4py-openmpi

Please remember to load the correct MPI module for your chosen MPI implementation:

  • for the mpich package do:

    module load mpi/mpich-$(arch)
    python -c "from mpi4py import MPI"
  • for the openmpi package do:

    module load mpi/openmpi-$(arch)
    python -c "from mpi4py import MPI"

On Ubuntu Linux and Debian Linux systems, binary packages are available for installation using the system package manager:

sudo apt install python3-mpi4py

On Arch Linux systems, binary packages are available for installation using the system package manager:

sudo pacman -S python-mpi4py

macOS

macOS users can install mpi4py using the Homebrew package manager:

brew install mpi4py

Note that the Homebrew mpi4py package uses Open MPI. Alternatively, install the mpich package and next install mpi4py from sources using pip.

Alternatively, mpi4py can be installed from MacPorts:

sudo port install py-mpi4py

Building from sources

Installing mpi4py from pre-built binary wheels, conda packages, or system packages is not always desired or appropriate. For example, the mpi4py wheels published on PyPI may not be interoperable with non-mainstream, vendor-specific MPI implementations; or a system mpi4py package may be built with a alternative, non-default MPI implementation. In such scenarios, mpi4py can still be installed from its source distribution (sdist) using pip:

python -m pip install --no-binary=mpi4py mpi4py

You can also install the in-development version with:

python -m pip install git+https://github.com/mpi4py/mpi4py

or:

python -m pip install https://github.com/mpi4py/mpi4py/tarball/master

Citation

If MPI for Python been significant to a project that leads to an academic publication, please acknowledge that fact by citing the project.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mpi4py-4.1.1.tar.gz (500.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mpi4py-4.1.1-pp311-pypy311_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

mpi4py-4.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

mpi4py-4.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

mpi4py-4.1.1-cp314-cp314t-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

mpi4py-4.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp314-cp314t-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mpi4py-4.1.1-cp314-cp314t-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

mpi4py-4.1.1-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

mpi4py-4.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp314-cp314-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mpi4py-4.1.1-cp314-cp314-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

mpi4py-4.1.1-cp313-cp313t-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13tWindows x86-64

mpi4py-4.1.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp313-cp313t-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

mpi4py-4.1.1-cp313-cp313t-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

mpi4py-4.1.1-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

mpi4py-4.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mpi4py-4.1.1-cp313-cp313-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mpi4py-4.1.1-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

mpi4py-4.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp312-cp312-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mpi4py-4.1.1-cp312-cp312-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mpi4py-4.1.1-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

mpi4py-4.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mpi4py-4.1.1-cp311-cp311-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mpi4py-4.1.1-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

mpi4py-4.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mpi4py-4.1.1-cp310-cp310-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mpi4py-4.1.1-cp310-abi3-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10+Windows x86-64

mpi4py-4.1.1-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp310-abi3-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp310-abi3-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

mpi4py-4.1.1-cp310-abi3-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10+macOS 10.9+ x86-64

mpi4py-4.1.1-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

mpi4py-4.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp39-cp39-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mpi4py-4.1.1-cp39-cp39-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mpi4py-4.1.1-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86-64

mpi4py-4.1.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

mpi4py-4.1.1-cp38-cp38-manylinux1_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

mpi4py-4.1.1-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mpi4py-4.1.1-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file mpi4py-4.1.1.tar.gz.

File metadata

  • Download URL: mpi4py-4.1.1.tar.gz
  • Upload date:
  • Size: 500.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mpi4py-4.1.1.tar.gz
Algorithm Hash digest
SHA256 eb2c8489bdbc47fdc6b26ca7576e927a11b070b6de196a443132766b3d0a2a22
MD5 61d5fd2b9b6193c5eb67cf6160043db0
BLAKE2b-256 627428ea85b0b949cad827ea50720e00e814e88c8fd536c27c3c491e4f025724

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1.tar.gz:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 189d49b0ae963f8f6f5dd8ed0f5f37923285c97bc725476990ec0556972bb4b2
MD5 030657dd1a5d16cecdafc89db2d7898a
BLAKE2b-256 8d4b227091dec11518e5545bd1ec91f52e06f64bdae697adc5fb33f9f20c04dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c1191856906967a48fdcc484b326c179747e68c186261d76480a75156bcc73bf
MD5 8a7516fe6f426a7ad567520884cfa582
BLAKE2b-256 dd61bbf87de6f3a8a9c54e7a4b72878c9069646ca9cafac8217fa5493a54b068

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 027b1a1ff9d57afed10af6b79041b95f85fd11b2af74e4c34ef4866ce81ecc24
MD5 011606acb6d43a593eeeb2322f2dd24e
BLAKE2b-256 b966b342e330ac543d0147ebfab754f69854c4777ac9785cb5b7610e3cd0c29a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84e9eb2e609b0b94cd0e9a3e3b57d897f748fb0207c4f72e81e5a95aba033767
MD5 33c6ef1dcbed4b116210cced9e11b08c
BLAKE2b-256 de18358f0eb58fb3b79f65861ed682af9e735d86669663dfbce396e8673ed518

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 95bb98d946eb88c9ae4dc6c42d11b3af8ce6b91e644c288cc3f85ec7596ffcd3
MD5 4f902a47175356baa0a5f319d47ad61c
BLAKE2b-256 e963b6a2863fb7dd5a9eccfdb055bf1124b999ff755d0187223b307161479b76

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • 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 mpi4py-4.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b4b3813da9a7a1fc37ffb8dad314cb396313a40cd3fe150854ab29e999a9eb8c
MD5 069e928f4af80a20cc0fb529252da257
BLAKE2b-256 1aca7e27edf78cd8ba68aacafc836004cd092a978f0d5ffc8a3eac9e904a3e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314t-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6beec4841f9436d49ec9cabfd76a19df61c10b21ca14eddafa58fe7977802ee7
MD5 7355a2cc7a1b07f172e884c6bf218572
BLAKE2b-256 093ee46629867204b22ce6804096e0b7d35bb5b473df1d12272021843af726c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2580fab891db492f32a6e02717e824f6fd5588be6560b08627c1e9322f7ccbfb
MD5 67cbad3d911f527af714daa5b57b7722
BLAKE2b-256 2912c46bec2311fc937ed3767312f9feb5f11bc70058c20bc53ae7369d759424

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cca235d46009f54cb319c779c6ac53d41ce1eee3cf07f157995bc7739329b97
MD5 808a781cb2b5bc7c7c9c59f9514f2c5e
BLAKE2b-256 5a939c9870174183869bd5a50bbfe7bda91a52bf7ca2d0851de4009590e735a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 729c4f625ad60e5cfb6c260608d249dc35a33cc16605faff01c6adbbd7e8ce0f
MD5 fbf8f222b250e03e2b34f80a927b4423
BLAKE2b-256 ed02b6700c24fe28588a4e40adb23d02fe2aea82b33495fd6290235da5199383

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • 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 mpi4py-4.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2c85983d38d77e6302a242e32afd2a9a9b3adedd770e199a38e5b8957150e7ac
MD5 4c80bd5fc54b7060c755d3d6892dc0db
BLAKE2b-256 6ab43021e073772cd9e1062a810b7298e68ea40933fb91b1c1c0d07c968dce5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 807c6f1ed3adbc12952db52127e34cfbd6c48a05c3b3dd59deee2d2f09d78888
MD5 4607e92ad7944fb807724310ac168a45
BLAKE2b-256 d2886acf948f19cb59c0e8843fed4ab4c471b7644e8a16c2d5d9c7ab6d73d573

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp314-cp314-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5f757e3089abf2c9db69fac1665fa99c52ed392fdf799159f25cba9ee3b64f5a
MD5 c8a910a17188d088f815d2d16e0fe38c
BLAKE2b-256 51339a5b9ae66cbb095b711f4ddae6d2d4b0f55202ac9e503fd588b101f04a22

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bb1e3ad0b9047b0dbc7b4014160a7ab2a84f1627be665527c7445fc312f189b
MD5 598a41cfe47a5c35ca966e183b940e1e
BLAKE2b-256 b223449562bd23fcfbd7d01006b39429972bfed5dfb8541355d06d2e17c16c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1deb6f9df28ec6972305287cb2035c20d3f5af59f687f962080756374c16e48f
MD5 c7bcf750ede6ffff4a991608def06e1b
BLAKE2b-256 6ae893ddde2b6ee7631b46bb79b851630b3527d9060b9b999844bcd882977539

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mpi4py-4.1.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 8d3bfa074776d9507ee957f5230d11ecd03da23f601a85349a1a333eaf55e5fa
MD5 0094f436939b69116c2b1830e59d9a02
BLAKE2b-256 9e7c5f0f32b39185f0a7074c165dc37cdd235bfd737928a2fe223e41b308fb4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313t-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 475da0797442cba723c0ad37da6a1c51d9624e697dd8bf89f23d0fad81e73eda
MD5 a01f7fd379931c2285093b056f0240b2
BLAKE2b-256 1ac106967d4c107ea7169d2120c4fb86c404707e6de82e277dc9f0fa5a9c1bf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dd869ea7758b591ffbb1483588a6fbf84952a5090e80a45ea89674d55cf25f3b
MD5 62d142b29bd7d2b35d4b30dcd5702a79
BLAKE2b-256 5163eeb936e0e8cfd8160b6b297645c730b22d242595861cf6a2fa627a358175

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd1e49b84a0651018517e87daf68085719eca25e5c9a7cd05d98a73418c88836
MD5 a43d808b52c03fc05be698714ea86ee6
BLAKE2b-256 1551d06d2b126be5660aca8c00fe0d940a8658085038f61a9cfc834d3d5ffa80

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 28ce1f7412f5e99a6b9fe2547203633431d0ee45670413a475a07e6c785e63b1
MD5 660dcfe8f23317a9153f1a2e7de94c36
BLAKE2b-256 84263e00dc536311e758096414b4f33beb4c7f04dff875e87a6e88fbbe4fc2d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • 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 mpi4py-4.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e13a1ba26604514a12c95b7d76058ce800d5740d5f5f3b50c4b782cfa0dfaa1f
MD5 09fd36f0d5b361471202578ddfe97f82
BLAKE2b-256 4ebfb0ab43a99ac2a1d6d5765cb7d2a4f093656090ce07528043057ecc3e87cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8c4ef9fe5fb211b1c5b6afe521397e3feb01e104024d6bc37aa4289c370605e2
MD5 f14721ebfe2c4d3f5653f75b04deac51
BLAKE2b-256 a220dc990edb7b075ecdba4e02bcd03d1583faeb84f664d1585c4c00a0f9851a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 323ba354ba951c7736c033c5f2ad07bb1276f9696f0312ea6ff0a28cd0ab3e3d
MD5 e7f185e20368db9b293cca0942aaea78
BLAKE2b-256 4701476f0f9dc96261d02214009f42e10338fc56f260f1f10b23ee89c515c8b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8c83a359e62dd7fdd030360f430e0e8986df029c0953ab216ff97a110038dc4
MD5 4bb4a5b12a27235f63defecb70e16565
BLAKE2b-256 3c1322fa9dcbc5e4ae6fd10cba6d49b7c879c30c5bea88f450f79b373d200f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f3dd973c509f2dbb6904c035a4a071509cde98decf0528fa21e2e7d5db5cc988
MD5 df6d1b8ee8e7524f455e803e9882506f
BLAKE2b-256 30752ffccd69360680a0216e71f90fd50dc8ff49711be54502d522a068196c68

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • 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 mpi4py-4.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0abf5490c3d49c30542b461bfc5ad88dd7d147a4bdb456b7163640577fdfef88
MD5 e7180032ab98de4f100cdbe7af08a70d
BLAKE2b-256 973a526261f39bf096e5ff396d18b76740a58d872425612ff84113dd85c2c08e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp312-cp312-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0699c194db5d95fc2085711e4e0013083bd7ae9a88438e1fd64ddb67e9b0cf9e
MD5 844e060a6829065f7d66c4b56b56944d
BLAKE2b-256 5d19088a2d37e80e0feb7851853b2a71cbe6f9b18bdf0eab680977864ea83aab

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp312-cp312-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp312-cp312-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ed3d9b619bf197a290f7fd67eb61b1c2a5c204afd9621651a50dc0b1c1280d45
MD5 3c6ba83bacd64048a2b9da5ecd47ca49
BLAKE2b-256 ee15b908d1d23a4bd2bd7b2e98de5df23b26e43145119fe294728bf89211b935

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp312-cp312-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a2ffccc9f3a8c7c957403faad594d650c60234ac08cbedf45beaa96602debe9
MD5 0599edb8a54c854d73bec9fb795e89ac
BLAKE2b-256 7b5318d978c3a19deecf38217ce54319e6c9162fec3569c4256c039b66eac2f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d4403a7cec985be9963efc626193e6df3f63f5ada0c26373c28e640e623e56c3
MD5 3b030f0122e44c7911201805f89f6382
BLAKE2b-256 ff2ce201cd4828555f10306a5439875cbd0ecfba766ace01ff5c6df43f795650

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • 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 mpi4py-4.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20bf4c0c65fd67287664f8b1b6dc7c7b341838f10bba34a2e452d47530ce8a5f
MD5 db09aafe37d980a88bc3944ef03ed6d3
BLAKE2b-256 f9a7152af3c6412702a4e0fcfd0fe572307ed52821de13db9c96535f31a39aa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp311-cp311-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4a36ef9d7b2b6b62026dbf9b59b44efb5430f7b9ca5fb855bfbf8d403218e37c
MD5 e5cfc921c36fd45f673aba2d1397fbbd
BLAKE2b-256 2533072781fb85f5bc50b93ee7e8d3b3afb849d50570431b6cb2aa957db79b59

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a753d5d61b46f90260247f344a6c57c527a6a4e7bea126830120ab41c3d057e5
MD5 2cc361d4c4867ea1d039847ce4c94242
BLAKE2b-256 5d151a869a35d3e3438866dc8d8c9cb04dc6aa484171343627a8baf82c3c1ca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc0cf81445fac2ae2e5716c365fd72e1bb545df065f5a3f6731f64b3beed886e
MD5 68293c339ab199cdaa6ad60783b829d7
BLAKE2b-256 ab81dce928b11816fac9713e93e609476ddac520fc50368aa7591728c329ff19

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a428ba96b992a8911cf932fa71dd8c0260d47ab7e5dee2b09239ad91fc540b79
MD5 18355486f7c9ebddaed3ce27ee86ac7c
BLAKE2b-256 208f5d28174048ef02fb91dd0759a32c07b272c9f1df265e19145712aa7bd712

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • 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 mpi4py-4.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1ad4b225a5a1a02a2b89979ed8f328c6a2bc3bd6ad4a57e453727f90373fa5f8
MD5 f633407b57f277cf424db922c754ce74
BLAKE2b-256 147653caf807ec74c042fbecf76162e071c09c53fb0ed66b1edf31dabd64c588

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-cp310-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c04a388c7a945e751c82742c6bb277434d26a67768a01952f7494d1c25dff94b
MD5 50c40f7f8be906bb6f478f0df5d81217
BLAKE2b-256 49567b32631f3cc5cf741610a108a7f40a3714c9862c1f637b5ded525af32be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d4c460609bd6decc22ad89cbfe48e4c5a2461ff52ada9345a4c19edee39f93da
MD5 aabf94f7363f29e94d55f6948b905325
BLAKE2b-256 c0c44a73c80cf483df603770278f0fdc57da5394edee376790c62f1eba04bb3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d618e6a5a8f6f86c33a954356d8ed398bec31f34b63321570661ac157063bb6
MD5 d89868dbc196c36a6a700578c958afc5
BLAKE2b-256 b7fecdead6721426b25d817a1bf45d5adc6dc90fd8bb0831f5ca06a4edd2015c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9082e04c8afcffa7d650a262d800af1a617c555d610810deeab265a4a5f7d42e
MD5 f1d376bff1ef858975962d8f219c9a7c
BLAKE2b-256 58f7793c9a532e5367cffb2b97ca6a879285ca73a14f79e6ff208bb390651a43

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • 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 mpi4py-4.1.1-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 0f46dfe666a599e4bd2641116b2b4852a3ed9d37915edf98fae471d666663128
MD5 58a56f74c343195dbca0696d65c4dc12
BLAKE2b-256 4044d653fec0e4ca8181645da4bfb2763017625e5b3f151b208fadd932cb1766

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-abi3-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6e0352860f0b3e18bc0dcb47e42e583ccb9472f89752d711a6fca46a38670554
MD5 3489f5982ae6bdf920289b8528dc4d0d
BLAKE2b-256 84d11fe75025df801d817ed49371c719559f742f3f263323442d34dbe3366af3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-abi3-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp310-abi3-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0a8332884626994d9ef48da233dc7a0355f4868dd7ff59f078d5813a2935b930
MD5 a65cee4439a63580e83bf5559fef2abd
BLAKE2b-256 5dc3f9a5d1f9ba52ac6386bf3d3550027f42a6b102b0432113cc43294420feb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-abi3-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba85e4778d63c750226de95115c92b709f38d7e661be660a275da4f0992ee197
MD5 eaaba822d74369d2379a890b566da689
BLAKE2b-256 6ded970bd3edc0e614eccc726fa406255b88f728a8bc059e81f96f28d6ede0af

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp310-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp310-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1586f5d1557abed9cba7e984d18f32e787b353be0986e599974db177ae36329a
MD5 fdae653d82730044dc3cc9f341688d29
BLAKE2b-256 36b32e7df40608f2188dca16e38f8030add1071f06b1cd94dd8a4e16b9acbd84

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp310-abi3-macosx_10_9_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • 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 mpi4py-4.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5a03993a1c08d68fe0b18ecdb3d13ab821ee2c2fda7c24bdb66a72329977249e
MD5 2d2bce8a0c3aff91c7f2ff40343c002e
BLAKE2b-256 bda5199429563af599a85a5b55f6e3d31d9983916c9a30ef820764adbe92bad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp39-cp39-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9c87127dceb2b46b7c99115dbf9de65535cecd77d5cb274bcfdc79fa07420fd9
MD5 55e4b764b897ebded952858ee4f7ea96
BLAKE2b-256 36b8e59ef8be7f0fa1278ee21fd7253cbbc85964b50e5ffee4787c3a815ee8b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp39-cp39-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp39-cp39-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 45dfcc6ef235203cb192912b1a3f1fea741f94fff713db1bdb716e8c7897d823
MD5 179c969397c0f739b18de0e1f6bdeb7a
BLAKE2b-256 cb0fcfbafc2d0f04046faf9e2374866abed726565f3c34cecf790ba615350dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp39-cp39-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 391a9931a8f5fc532fc9178a5357212ba3a6dc8cca59284d47dc4b7c588a7268
MD5 bd88af2c4b4022cad0d47cb7758813e7
BLAKE2b-256 bf0c762e779f023fc2e401d0d4e6616a5902d868c6187ad7cf382d078077d965

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1e0a6403ab921265d1e86d45c2996360d30fa7ad9a12de092ebc78ec8ec990c
MD5 c1aaf7bc08ff4888108223d4968d6fb8
BLAKE2b-256 189dc89747bc3f76a9bdad9b222e936f3216cb9ca8a4e2ca1e9dd763e8c9ff4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mpi4py-4.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mpi4py-4.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 20624f69a77369dd18d1b2af8c7107274a2263613111d5191df4af0fd08fd699
MD5 6a73eabe9fbbe93460c3dd0c6020cb2e
BLAKE2b-256 7d354b032fe251dd3ce851c90615535f320cf434a74c52f0a20c9ecc31d47464

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp38-cp38-win_amd64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0a5634b0a115d7e2b84a05c7c5495d0093dfa855cc18a85cb50045ecbb2e766e
MD5 e93f6b5e04e70fd9c75b916def4b1735
BLAKE2b-256 a675d8e8c1990096bed3146a2e29725b1cadb7064e8aa79d44ec1f46127791b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp38-cp38-manylinux1_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp38-cp38-manylinux1_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2b3539be1173672c20cd378997e91e5290bd6847d03503bdd4c4716fa525258f
MD5 a6277abb6b6182001f209d7b48f35daa
BLAKE2b-256 028667e960a751982b40651f63607303f4dc5be0296b144b56e63ddf07219689

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp38-cp38-manylinux1_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2cf47d511cd6518a37c72861e3043810d02ee4a9e33292275d1ea5d474866a1
MD5 9f8ad0a259834e5639a0a61709d17b6e
BLAKE2b-256 401d38a2ad5fcc6f2e4c1db3775ecebb327a18aa5c53c9811f7c1b71297ab5ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: cd.yml on mpi4py/mpi4py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mpi4py-4.1.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mpi4py-4.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f268af2bd476013e4a3de55d4c6baf3494be65a5214f2b6fa0842a21164082a
MD5 c8fa8a9c0bfaa740c5edc5052934daaa
BLAKE2b-256 5f7b30815cd3ef8f256ac3c2b8a51a18d4a52bc29364014780ac8b8871c575e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mpi4py-4.1.1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: cd.yml on mpi4py/mpi4py

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