Skip to main content

HiPOP

High Performance Optimal Path module

Description

HiPOP is the C++ graph library used by MnMS. It is composed of:

  • a C++ core library implementing a graph data-structure and several shortest path search algorithms,
  • a Python wrapper exposing the C++ classes and functions to the Python world.

Install HiPOP

Install prebuilt distribution

This is the recommended (and most simple!) method to install HiPOP: a prebuilt distribution adapted to your Python version and OS / system architecture is downloaded from PyPI.

pip install hipop

This installation method requires your OS / system architecture to be one of these:

  • Windows on x86_64 architecture (i.e. Intel/AMD CPU)
  • Linux on x86_64 architecture (i.e. Intel/AMD CPU)
  • MacOS (≥ 14 Sonoma) on ARM64 architecture (i.e. Apple M* CPU)

The exact list of prebuilt distributions is available on https://pypi.org/project/HiPOP/#files. If none of them matches your environment, please contact the package maintainers, or try the local build installation method.

Install from local build

This method requires the following components to be available on your system:

Then, here is the local build install procedure:

  1. Download the latest HiPOP sources from https://github.com/EMob-Lab/HiPOP/archive/refs/heads/main.zip or by cloning the git repository:

    git clone https://github.com/EMob-Lab/HiPOP.git
    
  2. From the root directory of the HiPOP sources:

    pip install .
    
    # Optionally, to run the tests:
    pip install --group dev
    pytest
    

Remarks:

  • The --group <group-name> option requires pip ≥ 25.1. If you have an older version, the install command above will fail with an error message such as no such option: --group. In this case, try to upgrade pip beforehand with:

    pip install --upgrade pip
    

    Alternatively, install the test runner pytest manually (or skip the optional test running step).

  • Editable install mode can be used. The install command then becomes:

    pip install --group dev --editable .
    

    Please note that using the --group dev option (or equivalent, to install the dev dependencies) is mandatory for HiPOP editable installs.

  • If you don't have the prerequisite C++/OpenMP/CMake components available on your system, but you have Conda available, a Conda environment with these components is provided with the HiPOP sources. Install and activate it with:

    conda create -f conda/env.yaml
    conda activate hipop-dev
    

    Please note that the use of this Conda environment is optional. HiPOP can be used with regular (non-Conda) set-ups.

  • If you are using MacOS and the Apple Clang C++ compiler, please note that OpenMP may not be available by default. You may install it with:

    brew install libomp
    OpenMP_ROOT=$(brew --prefix libomp)
    

    Alternatively, you may also use the Conda environment provided with the HiPOP sources (cf. previous remark).

Install the C++ core library only (from local build)

This installation procedure allows you to build locally and install only the HiPOP C++ core library. The Python wrapper is neither built nor installed here. This procedure is intended for advanced users.

For this procedure, same requirements as mentioned in the previous section in terms of C++/OpenMP/CMake components. However, you don't need to have Python installed on your system.

Then, from the root directory of the HiPOP sources:

mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=<install-directory>
make
make test    # Optionally, to run the tests
make install

... where <install-directory> is the path to the location where you want to install HiPOP.

Download files

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

Source Distribution

hipop-1.1.0.tar.gz (31.8 kB view details)

Uploaded Source

Built Distributions

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

hipop-1.1.0-cp315-cp315-win_amd64.whl (554.2 kB view details)

Uploaded CPython 3.15Windows x86-64

hipop-1.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (404.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hipop-1.1.0-cp315-cp315-macosx_14_0_arm64.whl (515.4 kB view details)

Uploaded CPython 3.15macOS 14.0+ ARM64

hipop-1.1.0-cp314-cp314-win_amd64.whl (554.2 kB view details)

Uploaded CPython 3.14Windows x86-64

hipop-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (404.1 kB view details)

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

hipop-1.1.0-cp314-cp314-macosx_14_0_arm64.whl (515.4 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

hipop-1.1.0-cp313-cp313-win_amd64.whl (538.4 kB view details)

Uploaded CPython 3.13Windows x86-64

hipop-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (403.8 kB view details)

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

hipop-1.1.0-cp313-cp313-macosx_14_0_arm64.whl (515.1 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

hipop-1.1.0-cp312-cp312-win_amd64.whl (538.3 kB view details)

Uploaded CPython 3.12Windows x86-64

hipop-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (403.7 kB view details)

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

hipop-1.1.0-cp312-cp312-macosx_14_0_arm64.whl (515.1 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

hipop-1.1.0-cp311-cp311-win_amd64.whl (535.5 kB view details)

Uploaded CPython 3.11Windows x86-64

hipop-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (401.4 kB view details)

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

hipop-1.1.0-cp311-cp311-macosx_14_0_arm64.whl (513.9 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

hipop-1.1.0-cp310-cp310-win_amd64.whl (534.6 kB view details)

Uploaded CPython 3.10Windows x86-64

hipop-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (399.3 kB view details)

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

hipop-1.1.0-cp310-cp310-macosx_14_0_arm64.whl (512.7 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file hipop-1.1.0.tar.gz.

File metadata

  • Download URL: hipop-1.1.0.tar.gz
  • Upload date:
  • Size: 31.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hipop-1.1.0.tar.gz
Algorithm Hash digest
SHA256 1155e889e4b4b28f94933f76197a3dbf5e7126e47ccd3af35f4a46a25a41f233
MD5 890c8b1c7adc6587d49ff6e43b1d49c0
BLAKE2b-256 d9d76d54ccbb3e13f9da6d3e18fe18019e641888534a54646032ee7a2c16c43f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0.tar.gz:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: hipop-1.1.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 554.2 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hipop-1.1.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 45e96175d496a92c0882e3409bf117ff8044eb6a4840427690ba4e941069555f
MD5 63a59b488ceca6b3476125c03ffc44ad
BLAKE2b-256 6b0c44c2226a7642eab6934ddce930d392abf5465ee4caa00b25df64aa6cd868

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp315-cp315-win_amd64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bdfbbcd1674cbaf48b828651eb3fb0186a990a36f9403e2ee2210a298c0e0f45
MD5 3a645cae4b7368e7454d019741b0c7ea
BLAKE2b-256 b4e8a443e99cf34f367ab404774bfabdda94585cf594f317c60299f06b9698af

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp315-cp315-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp315-cp315-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f344ad708e2bcaa9fb9a835ed84d93696094ea563616abb39800d6db2c7fd01e
MD5 dacf5746a2947210d75b36118fee99db
BLAKE2b-256 8907c62009809b79bfe82ba98c1d169d237b836c1ab31cd3ad4ea6243a5c126a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp315-cp315-macosx_14_0_arm64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hipop-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 554.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hipop-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 edf3d990944737b6bb158fd946e8a767f38631524069342bfa62ca6cb88092f0
MD5 cef25500c258f4570880ed2938073dee
BLAKE2b-256 e639600ccbbe0a1f4800c7f8098db001681f36ddf1fac9b22ba5beb3cfdecdd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31ab81fdc3bf1e3cad76e51fbe22c12446eceb1b5885576f0c36c1100aee0002
MD5 829ccb7c763f1c07f5e4f6da737e5d70
BLAKE2b-256 6db4840b00d4898463e8b658467faac9b0848fef152727595b2e80c166513f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 42399c048b9a70111db634f8d254d1ec05ba57bc32d80f3fa91c567e3dc50eab
MD5 4d9787cab81ca67b18138306d422f467
BLAKE2b-256 5bd57f2bdffb3d9ddac1d57043ef5d66ba61a179133cf6d07aa6f5574bb70782

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hipop-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 538.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hipop-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 76dc03654457101f9e0d692a16391bf7ebea28a0f0451706fd4973bc0fd91f9b
MD5 f834fe068aac0e101b6423f4fbb7a669
BLAKE2b-256 1f537a6608493085877e145f2acf07b61a19e4e55633f6b5635cc89510ed993e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a365ee057821cb3b3ec67021922615614fc217ee16a1a59b4288bc3792ec3ef
MD5 dc7e874909c013e47e34882989c3adbd
BLAKE2b-256 23fe5e20c372105ccbf09b043036b57e2a4490f1a15714d94cc93e514fea93fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 39e2f51c5a0993865afdcaff0ee54b5fa713468c80aca805d5eebc157e92c5e3
MD5 2ef320bc9bb399e5aa3dd942077be089
BLAKE2b-256 075a083dd9c2b149b6b2bea6f6a194bb7d90f4d7080d251d8919295ebb6cfd1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hipop-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 538.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hipop-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2017610a8509ed111758528083f7a9f8df462751eae0c2484cd41bd9d75b5c2f
MD5 eeefcaa30bc31cdb9d52831a49e8d9c7
BLAKE2b-256 9f754b3a7f4fcc351ba84763739d9e7a17ee1bb7c27987a05290d65d36584c5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84233b5177536c0eda7f399be8f7c9dce281bb7355583141c6c4d11ed9ab0760
MD5 c3e797556b6e87d242098cc563dd624c
BLAKE2b-256 19c3ce8f76fe204d8846cb7568499772b224bae6016bd59b41798590c76a7fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 de003a89f0f88dd2067063cb55302b6cce4c282b764d5cc67341ff34bed91a14
MD5 e6f6f38ce148dbde0e861c4dbe392b15
BLAKE2b-256 05ca8ba5724c16fd2c41f86e44ec42f75facbbf5876016e48cbb3c123ec71884

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hipop-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 535.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hipop-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 78ee039c40caf7eca50534d029c19fb01146004952230cb3119ed77a9a2335ac
MD5 6e6784a5a2a437280c3e8bae38a0d738
BLAKE2b-256 d61e5babce99b1a760500b0b8c7dcc08832abc17acfe6984f046b811bfe46f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0feb882f734d1f11ced56eda134af97da0b9a1e78d794abb07ab7ad8b9b2d3ff
MD5 13ecac0b6dff7f1a43d9ebe56eeff834
BLAKE2b-256 c405f14416979ed09671b5fd2b4cc82e6e3e9db60ade9c2e8bc589e357705869

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 48c0f771101390ea5cf26464317c1ab43d755b79bf4138d9b90dd7e2463814bc
MD5 1a3dd21fe7061cfbdc038271ad8c9c30
BLAKE2b-256 d3cdf7572b429d78cea333ae05b21bc5a5cffc33e9fbd918233f5890c5af692f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hipop-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 534.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hipop-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c2145096e6f51d34df4016d7df6563f89c57171c3cd840f82b48ddf54b63b051
MD5 8421f88a591cb5b973353363026483d4
BLAKE2b-256 3f044a0ac4d61c131a2171869ea11db9b5d18ff4953d5a15a84faae5f825364b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5cc9901502537bc90ffaad3d2531c65f8a2b5d2552447f7ada520127c77728b
MD5 c6b5b1b7a2f6680b9ed19c82416e538b
BLAKE2b-256 d92dd6f8e2123e57432c019c5f699331b7539db0a50d60c38911ecabc4847668

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

File details

Details for the file hipop-1.1.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for hipop-1.1.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 20cafa642b3a75261e05f79fcb86676e3dd70e9f26a81c01bfea33c9ebd5a4d2
MD5 8d1de41fe6015be3fd3f2674858f3940
BLAKE2b-256 c776ff636b05b240bb621cd823fa58357dda3fad688529b642b07028fd4cf365

See more details on using hashes here.

Provenance

The following attestation bundles were made for hipop-1.1.0-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: deploy.yaml on EMob-Lab/HiPOP

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

Release history Release notifications | RSS feed

This release

1.1.0 This release

19 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page