Skip to main content

PyPI version shields.io Build status pre-commit.ci status Website pypop.org GitHub license Citations DOI

https://raw.githubusercontent.com/alexlancaster/pypop/refs/heads/main/pypop-logo.png

PyPop: Python for Population Genomics

PyPop is a framework for processing genotype and allele data and running population genetic analyses, including conformity to Hardy-Weinberg expectations; tests for balancing or directional selection; estimates of haplotype frequencies and measures and tests of significance for linkage disequilibrium (LD). Full documentation is available in the PyPop User Guide.

How to cite PyPop

If you write a paper that uses PyPop in your analysis, please cite both:

Our 2024 article in Frontiers in Immunology:

Lancaster AK, Single RM, Mack SJ, Sochat V, Mariani MP, Webster GD. (2024) “PyPop: A mature open-source software pipeline for population genomics.” Front. Immunol. 15:1378512 doi: 10.3389/fimmu.2024.1378512

The Zenodo record which includes a DOI for the version of the software you used in your analyses. Citing this record and DOI supports reproducibility by allowing researchers to to determine the exact version of PyPop used in any particular analysis. In addition, it allows retrieval of long-term software source-code archives, independent of the original developers.

Quickstart Guide

Installing pypop-genomics

If you already have Python and pip installed, install using the following:

pip install pypop-genomics

Otherwise, follow these instructions to install Python 3 and pip.

Once pypop-genomics is installed, depending on your platform, you may also need to adjust your PATH environment variable.

Upgrading pypop-genomics

pip install -U pypop-genomics

Uninstalling pypop-genomics

pip uninstall pypop-genomics

For more, including handling common installation issues, see the detailed installation instructions .

Once you have installed pypop-genomics, you can move on to try some example runs.

Examples

These are examples of how to check that the program is installed and some minimal use cases.

Checking version and installation

pypop --version

This simply reports the version number and other information about PyPop, and indirectly checks that the program is installed. If all is well, you should see something like:

pypop 1.0.0
[Python 3.10.9 | Linux.x86_64-x86_64 | x86_64]
Copyright (C) 2003-2006 Regents of the University of California.
Copyright (C) 2007-2023 PyPop team.
This is free software.  There is NO warranty; not even for
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

You can also run pypop --help to see a full list and explanation of all the options available.

Run a minimal dataset:

Download test .ini and .pop files: minimal.ini and USAFEL-UchiTelle-small.pop. You can then run them

pypop -c  minimal.ini USAFEL-UchiTelle-small.pop

If you have already cloned the git repository and it is your working directory, you can simply run

pypop -c  tests/data/minimal.ini tests/data/USAFEL-UchiTelle-small.pop

This will generate the following two files, an XML output file and a plain text version:

USAFEL-UchiTelle-small-out.xml
USAFEL-UchiTelle-small-out.txt

Detailed installation instructions

There are three main steps:

  1. install Python and pip

  2. install package from PyPI

  3. adjusting your PATH variable after installation

Install Python 3 and pip

A full description of installing Python and pip on your system is beyond the scope of this guide, we recommend starting here:

https://wiki.python.org/moin/BeginnersGuide/Download

Here are some additional platform-specific notes that may be helpful:

  • Most Linux distributions come with Python 3 preinstalled. On most modern systems, pip and python will default to Python 3.

  • MacOS 10.9 (Jaguar) up until 12.3 (Catalina), used to ship with Python 2 pre-installed, but it now has to be manually installed. See the MacOS quick-start guide in the official documentation for how to install Python 3. (Note that if Python is installed on Mac via the MacOS developer tools, it may include the version 3 suffix on commands, e.g. python3 and pip3, so modify the below, accordingly).

  • For Windows, see also the Windows quick-start guide in the official documentation. Running python in the Windows command terminal in Windows 11 and later will launch the installer for the Microsoft-maintained Windows package of Python 3.

Install package from PyPI

Once you have both python and pip installed, you can use pip to install pre-compiled binary “wheels” of pypop-genomics directly from PyPI.

pip install pypop-genomics

Upgrade an existing PyPop installation

To update an existing installation to a newer version, use the same command as above, but add the --upgrade (short version: -U) flag, i.e.

pip install -U pypop-genomics

Installing from Test PyPI

From time to time, we may make available packages on the Test PyPI instance, rather than the through the main instance. The above installation and updating instructions can be used, by appending the following:

--extra-index-url https://test.pypi.org/simple/

to the above pip commands.

Issues with installation permission

By default, pip will attempt to install the pypop-genomics package wherever the current Python installation is installed. This location may be a user-specific virtual environment (like conda, see below), or a system-wide installation. On many Unix-based systems, Python will generally already be pre-installed in a “system-wide” location (e.g. under /usr/lib) which is read-only for regular users. (This can also be true for system-installed versions of Python on Windows and MacOS.)

When pip install cannot install in a read-only system-wide location , pip will gracefully “fall-back” to installing just for you in your home directory (typically ~/.local/lib/python<VER> where <VER> is the version number of your current Python). In general, this is what is wanted, so the above instructions are normally sufficient.

However, you can also explicitly set installation to be in the user directory, by adding the --user command-line option to the pip install command, i.e.:

pip install pypop-genomics --user

This may be necessary in certain cases where pip install doesn’t install into the expected user directory.

Post-install PATH adjustments

You may need to adjust the PATH settings (especially on Windows) for the pypop scripts to be visible when run from your console application, without having to supply the full path to the pypop executable file.

  • On Linux and MacOS, systems this is normally fairly simple and only requires edit of the shell .profile, or similar and addition of the $HOME/.local/bin to the PATH variable, followed by a restart of the terminal.

  • For Windows, however, as noted in most online instructions, this may need additional help from your system administrator if your user doesn’t have the right permissions, and also require a system reboot.

Uninstalling PyPop

To uninstall the current version of pypop-genomics:

pip uninstall pypop-genomics

Support and development

Please submit any bug reports, feature requests or questions, via our GitHub issue tracker (see our bug reporting guidelines for more details on how to file a good bug report):

https://github.com/alexlancaster/pypop/issues

Please do not report bugs via private email to developers.

The development of the code for PyPop is via our GitHub project:

https://github.com/alexlancaster/pypop

For a detailed description on bug reporting as well as how to contribute to PyPop, please consult our CONTRIBUTING.rst guide. For reporting security vulnerabilities visit SECURITY.md.

We also have additional notes and background relevant for developers in DEV_NOTES.md. Source for the website and the documentation is located in the website subdirectory.

Download files

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

Source Distribution

pypop_genomics-1.4.2.tar.gz (7.7 MB view details)

Uploaded Source

Built Distributions

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

pypop_genomics-1.4.2-pp310-pypy310_pp73-win_amd64.whl (326.9 kB view details)

Uploaded PyPyWindows x86-64

pypop_genomics-1.4.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pypop_genomics-1.4.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pypop_genomics-1.4.2-pp39-pypy39_pp73-win_amd64.whl (327.0 kB view details)

Uploaded PyPyWindows x86-64

pypop_genomics-1.4.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pypop_genomics-1.4.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pypop_genomics-1.4.2-pp38-pypy38_pp73-win_amd64.whl (326.8 kB view details)

Uploaded PyPyWindows x86-64

pypop_genomics-1.4.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pypop_genomics-1.4.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pypop_genomics-1.4.2-cp314-cp314-win_amd64.whl (332.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pypop_genomics-1.4.2-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pypop_genomics-1.4.2-cp314-cp314-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pypop_genomics-1.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pypop_genomics-1.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pypop_genomics-1.4.2-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pypop_genomics-1.4.2-cp314-cp314-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pypop_genomics-1.4.2-cp313-cp313-win_amd64.whl (327.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pypop_genomics-1.4.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pypop_genomics-1.4.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pypop_genomics-1.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pypop_genomics-1.4.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pypop_genomics-1.4.2-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pypop_genomics-1.4.2-cp313-cp313-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

pypop_genomics-1.4.2-cp312-cp312-win_amd64.whl (327.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pypop_genomics-1.4.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pypop_genomics-1.4.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pypop_genomics-1.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pypop_genomics-1.4.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pypop_genomics-1.4.2-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pypop_genomics-1.4.2-cp312-cp312-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

pypop_genomics-1.4.2-cp311-cp311-win_amd64.whl (326.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pypop_genomics-1.4.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pypop_genomics-1.4.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pypop_genomics-1.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pypop_genomics-1.4.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pypop_genomics-1.4.2-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pypop_genomics-1.4.2-cp311-cp311-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

pypop_genomics-1.4.2-cp310-cp310-win_amd64.whl (326.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pypop_genomics-1.4.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pypop_genomics-1.4.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pypop_genomics-1.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pypop_genomics-1.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pypop_genomics-1.4.2-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pypop_genomics-1.4.2-cp310-cp310-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

pypop_genomics-1.4.2-cp39-cp39-win_amd64.whl (326.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pypop_genomics-1.4.2-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pypop_genomics-1.4.2-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pypop_genomics-1.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pypop_genomics-1.4.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pypop_genomics-1.4.2-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pypop_genomics-1.4.2-cp39-cp39-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

pypop_genomics-1.4.2-cp38-cp38-win_amd64.whl (326.7 kB view details)

Uploaded CPython 3.8Windows x86-64

pypop_genomics-1.4.2-cp38-cp38-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

pypop_genomics-1.4.2-cp38-cp38-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

pypop_genomics-1.4.2-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pypop_genomics-1.4.2-cp38-cp38-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

pypop_genomics-1.4.2-cp37-cp37m-win_amd64.whl (326.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

pypop_genomics-1.4.2-cp37-cp37m-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ x86-64

pypop_genomics-1.4.2-cp37-cp37m-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ ARM64

pypop_genomics-1.4.2-cp37-cp37m-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

pypop_genomics-1.4.2-cp36-cp36m-win_amd64.whl (343.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

pypop_genomics-1.4.2-cp36-cp36m-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.28+ x86-64

pypop_genomics-1.4.2-cp36-cp36m-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.28+ ARM64

pypop_genomics-1.4.2-cp36-cp36m-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

File details

Details for the file pypop_genomics-1.4.2.tar.gz.

File metadata

  • Download URL: pypop_genomics-1.4.2.tar.gz
  • Upload date:
  • Size: 7.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pypop_genomics-1.4.2.tar.gz
Algorithm Hash digest
SHA256 fc1fec691e4851e61f4494c3edd4544dab525d87c1c774e4f1078f37dfc7fa7c
MD5 859f20bc9a58de762e4e6b434fd8b4c9
BLAKE2b-256 9a4ff02427755052905dd071b9bf67abab02edf191edc3d971ab6530cf452631

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2.tar.gz:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 40be8cef792fd80e977b84f3633dd20df283752b79d127e1f7710a65637d64a5
MD5 1caf25bdc367e5b9a5d25585deeeae96
BLAKE2b-256 3962d968444bee61a5283d6e6bd04c68f9b74e1d2310e083029a60c5ac2abb75

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d38daa9b60f9c9900d37a950e52b70606b5f566f82a1f990bdfd8fcb22f4a3c9
MD5 30767fb2924dadbc819324c5ece26fa2
BLAKE2b-256 1f690600be9de9c5ab5d1d08e4531c63392e929682b256c43ff80bbcfe969f76

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4380b5123a1fba5ed3f6e4f1cdb0ace539ef1fd5f68b326b6f1fd840f3f3ec6f
MD5 3ea84a437e4d04ff6db7fb8195348ab8
BLAKE2b-256 f01f52bb677a5246c82fc350fdcb9b387bb7d9fa94d115fd451d8b5124c5275b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9cc5263eed594de05276bc77177eb893e909dd4b0121560e6c5e55a7184f8bda
MD5 2f6bb11875084d7747449f5702be25b4
BLAKE2b-256 04da420a44227210fe7beceb2f160af10896b1ea3a7afa19aa9a7592d309bfd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47425d44164ee1781bbf499e4ec1e404a2cc03520261135d9ec038e565bda0aa
MD5 cb45e16508641b687b0468ae0559a6be
BLAKE2b-256 f5a6f820e1e300dc2973d84c330182136e83b58e4cf63f46417ff9b28dc3dbfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b1e3794e778532b34134fed90983dac295ed882c7caa0dd922443aa2c5443c88
MD5 8229c8da7d752fe21f7e410ce637262a
BLAKE2b-256 717b5dfed84254fb6a89c006eaa4500a91f4308bba445513352017c7085a22d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 21269050bd2812dfe5562b927a376dde7eb630fd9be1abd0deeb5be11b056802
MD5 a1772a8c964d54fdfa1ba445da91db18
BLAKE2b-256 a8915093d21016a3de164511bcab671f550a402f5615728d86430c65b2897a67

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-pp38-pypy38_pp73-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 648d2c8b21854c91ec82595c6934386827ddf9cc29c642f2aa39046e785f17a8
MD5 7651811322b48d62fc54305e4843ceea
BLAKE2b-256 4567d629ee7453e4cac9ccaf7c46a2267827fcfbc2931ba286b6c86c9f0a8ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7fcd86675cf84dc8fc9d4d48324d426e9db87f43491a5ad74d9cc3eda374f11f
MD5 a0851a9a893c1992b3214e10476eeaa5
BLAKE2b-256 08f47d92e3fc7d323a85c20e698029ce9568738cda6ecd8ad4fddd7cca934e43

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 83a27eeca59f6e16b67d16b1ad0ea33d31ecc38a675c51d6796558fa7c36b91e
MD5 496ea1b54fcf23d92a3c1aec43e458bf
BLAKE2b-256 b68197d5121184377f5f7a2c8d26560701db217fd506c5fbeef1cc2ff92808fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea604872c61feab3b613798dfc404a39c1f439828fd02290d611890d23a00fa6
MD5 8816adb30728df837b3c2b5b8ba70d70
BLAKE2b-256 3a0cc25089baef9d8c8343e8eb924cea5c56a89089d9a55293d39f7013ac41d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dfd3bddfbb37036cb6fecbba11dc884173973982af09e50310dad800ab0a02e
MD5 45285df6f006c7198f7572f2bf7ae7a3
BLAKE2b-256 527169ce950fd2d069297be889f5cd3932fd958b658121414b3825f678c2b06a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec8c6b5ab85307104b7f31e977a7397b42d3d643e4a7e93ae5b516103ee99a4c
MD5 e103334ea7b61d627dc87aa09f7bc5e6
BLAKE2b-256 5c34230e188a9853ab24a6a3ca8e3cb664ffa49ce6365e17521fe35dbd8fdde7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d629c1fe12d8fa635339dffa5b1bdce6706aeca052001c42305134674231e9e
MD5 322a0a798ea2ffa05cc2e51005130e87
BLAKE2b-256 d922652e6d6efaa9af97bcd95a08753eafeae23790a44367638bac12be3ebdb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12ac0b0eac3aa0bad114733aa300aae317d72b429fe221c39e1c02525ef58231
MD5 e87098b0e982aa4f7309351117612124
BLAKE2b-256 9a94e51230062dce3786372c76c99962facba519d6f2ea211d8d5f98df072f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d5b4ea41333e8ca7b88be9e3a9375e772ae949d843c865c4d02a8a6669cd38f7
MD5 029fe7b3d09ca61ade93ca142c420dfb
BLAKE2b-256 052d0999978316b112a3577fb2668ac146a2dd64468b939a1af6251560a4975b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9f083c9c251d14fdb85e4b34e797017bfe492eeebdbbde116836897a8f86a8e9
MD5 fff8381c9c3664fa668780389d4ced84
BLAKE2b-256 76595142de77ebbd26174ab8d15d2f7ddd17c871ca110926d2a48811ce15e57b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1327f7a8d571d4b45114a2faa9b48ffa48bc460d0e1c5689ffd0caa34841a6c2
MD5 fb31d802db6dee493c24f1e895905d96
BLAKE2b-256 a59031eac8dc26fb4d747d96d22405ce9fffa6c4d3a0617eeda831449c26795d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 617ed1df7855d7423a314e8d335cc35af9096ffbf7019ebd93167a930d6723f5
MD5 ec1986250a5ba03672a878c32787cd6b
BLAKE2b-256 adaa370fb0e2be6d6f661035ad90051328de411fadc43517a8560dec310c4054

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c11014cc6255c62517e0bd45059391943179dd01f40b13ecdfb88b24488ac306
MD5 611bf78cf2843bf29460a9e5a860afc5
BLAKE2b-256 50240a0837add6c304a1bb69511b7f07f7fd89e12b399bf37f260c711c7d040d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de8c701dc0016e685c2b79cb68ea67eb42595b0e575ebc20edfcbb036496e7ea
MD5 30e4a2902262f2335e9c8adab62296c7
BLAKE2b-256 f9b6689b49ded6be881fa5e126fa3ae271e08e730c192b7240e48d721cd3b937

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a46ebf2c37b091662ba7b15d25bdd4d61bef76ea9df3cb5a421f5fe87c69c04d
MD5 d8a2bfa6b653c43d050b45615590b31f
BLAKE2b-256 80e995ed9d553e7d5eb0bebe10d6fb612284f58f399ed9ebd54dba754fa1b682

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f78a80687571c3cddb511eabd21bbf71bea638a05edb372a352a407788051860
MD5 369f135955f75112fed9465025afe72a
BLAKE2b-256 7922219f34755f7f84bb5022a4e516c2af79ea96361691c87dfbaeb47b2819b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b3a96360daa5102ac35cdb5da08e9ebf07a118016592e87a10f7a2aa02045eca
MD5 d75bf473e1011baae735cc2f08f15760
BLAKE2b-256 7f358e9e08788f593aed7211734956431dccde6ef52a87827215019d78420b6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 180583cc24534c963126df5ba87b9eda30e918d84c62397b000f4f70105b8b03
MD5 3ef59efe221640b84ec8ad4820e7a3b8
BLAKE2b-256 a79539c36a124ec0205885919406d27b29f5e60a8149ae625cc0f6c120f97de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8f49302843eac59723e5de2cd887da18f4c0a65f497aecc1023ee493191b9e2
MD5 9ae0be3c22102b300e534b3dce87108f
BLAKE2b-256 3beee7414f7bfd413e445e428dd50f0d6f21422f6acbd0b2240d91994e9fdac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09ca3d525511fdffa409885caab610926d7e99df8df0e8319066b931bea19144
MD5 45852ea6605f470dc6d315ecf4322840
BLAKE2b-256 830dc91dc3fe1e007ec911cf66084263960e7ede5f2da58803bc1d549f89bcbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c568e18bd384ecc452e65f9d6389657f5a192eba1c1d4eced4d02c88a301ca3b
MD5 7a244ba9230c56a1c2f5d96bdc19775c
BLAKE2b-256 287d21289258a6d8e46fda8b43bc094e0d35c8b747c809d600dfb43bcacf9ada

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 021a925bf7d8a8c29e32fb67c080cc7b50c074dfffb3538556025223ed718442
MD5 a40d6bdec1039dcb14911eb9872e1ec8
BLAKE2b-256 cba82488be75108803857191406f15807a60bc4633ca973174f7bc6c075f8f02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9822d2df24f3717d282e93fbce0bc1d5b3e181680335b979c7e495c51ff8292d
MD5 613f8e1de73e2adc161b9309cee1e9c2
BLAKE2b-256 6ea3f27ff67d68f0207dbdff4dc04fed28a1bfeca293c722fa4fd103ee55b7d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c01b3d3f769c9d360938a5c83389997a2b9befdf26c97792526bc193334e9282
MD5 4ce29add3ef49aaf92d5d8fe1fdde4db
BLAKE2b-256 380341bfa6c46b797bfdce79e6215de25824985ecf38c4ddd3b2a1d7d0cae39a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d260942e3160c12c62cbba37c11f7ebaa75986ccfdbc1a98939a61beb89aa861
MD5 5beadd6b1bda6b431400d9bd8d132905
BLAKE2b-256 00c8e0b9c39edfb185ebff0d22d6abe6ab3af73cf9466b73ec62418a8864bc51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c7967c63bfa8005dc551123fadbeb438ab5264d07135425de67850e09cd7e60
MD5 fee6b5d0b5972c3678da666fea070cb1
BLAKE2b-256 0e4e99cbe7947d5756aa05836a4677f099528a8554b531021272ac0a4b2a96b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c1e68eaf8da8272876a18d92a0afbefd978aa2688ffafabb5ab88cdd24774d8
MD5 1c22f0f25a93b510c7e390948cde6633
BLAKE2b-256 8f84d76957acf5882644fc143f3da826e1f4b52644946e7a84a513418940e934

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 892d24227579a6313e8f41c396f2fadfac25143b68307ca81e005b074b1a09b5
MD5 93e1d725e858009d830f67805db18fb7
BLAKE2b-256 ccb0fdedfec997a025b47369c414a290e9abb123e6c031beca887cdaa92e9ee8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2c5df97e6e0ef1fa11b1e046ea44b58d4fc487832b012a657eae87406418a6e
MD5 f667921b99e324b2b7237cdffb522797
BLAKE2b-256 2f418bdaf861c18633017ca8bdf5704a72a19eda52a61f35f31cb2515b154dde

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d8af0c75df775997dc72ed44bd90416d08645645917a2417c6163dce03eaa032
MD5 2bbaefb9cc053211455a4c6d44b47ffb
BLAKE2b-256 7ed8cd14f4abcaf46c88ad888780d061e888473e0174ff61fd217f74e2704068

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 93640f5d17c6f0456c2655ea977232c950380481719d5049e626e50067c5e819
MD5 7c98426d3bc5e67bf627851973587e0f
BLAKE2b-256 ebca95368113640a7af348e680e03a9ea783c7a256930e43ae45e543635eea7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a599c69cbd00f6ae63740dd59115920b7aa87cc709398bdf452545933418525
MD5 1378071c5727cbad29f376cabc418515
BLAKE2b-256 29f767e4f60e888b676c4229d82fb44df4bac7bbc6bfde35d2d2a3c38dd641da

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e86801861a3932d2d6054065a793ef96e19fb5cf56fc2a10216b9f69e80e2150
MD5 1ae40fb36033cbc746753b6d2bed6c92
BLAKE2b-256 6244ac4e9c1301fea8ffec4430e16134f315ff3f36973312940230c87742cc5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6613ead31a48f79597a59db2ced8f6535767bc58dc83ddbeef855bd6b6411be6
MD5 a7480737fd1ed93e05d378362eaa3ac5
BLAKE2b-256 e4b042c1342696e9dbe35d16ef646cccd3e30e68e077259704e18ee078e245df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d4f213fa6e5f2e1fc439eab79f24320fb8272f62f5146eb70a6dc618fa74076
MD5 1f0fcb68a54b07c17496918a75d50dd7
BLAKE2b-256 e9e03e54152127f0915d50f9330e6636267cb08e5432c4560a246e4cc1a4a298

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cf4cb328a4982a89433dcb6c3b31b90ecdeb924fc29b285355b6a58032bcbc4
MD5 142023538f8ae347f8cc9eb4b308c8bc
BLAKE2b-256 f8673353f9080ec80b4aa73f8e4077c02499b217b70958102ef3736c6bf121b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b6497a8b209c4b1753db7166b6360121b4bc789c223a54fe5bddede852c12580
MD5 3b7641b0a307a3c0678fc69ff52eb2f0
BLAKE2b-256 d0f6d8f101f11c876ebfbb0da96e3fde65a13d003d8ef346a2e77e590eaed840

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bbc2d420dad5cf0d0f7e0aebe19cb45d56aa354f62eec9757eb29e0172be7ca9
MD5 4cce30b65365a601ecef3d9927138884
BLAKE2b-256 a17d93c4a14bd6fc2df27fc2a471055827cb9df77a872a619686f359ebb62489

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8eef148aa9f4be050133881b8fe7463ab5b795a43601bb4a637f21cebee6e4b3
MD5 7f95e0fcff92daa5020c01250a14e6bf
BLAKE2b-256 8d83e62b85fe73dd717ead3d4e4bc7850c06b2d393f414b243453f66f45b6a66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b7ab6a7c40eaae38dc098664707cbb155f6755668392902d6b81856bc259b66
MD5 bb9033f863156f5605c91a302445699f
BLAKE2b-256 6768f7031a23218248b4bd774f4bafcbcb8a7d7c9d5e8b53424f70f8e1eec6f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a67adc509c0151b6de1ffa449c59505f323a659250ab57944e5ea84102b28bf5
MD5 97911e484a1bd866eed57a9b31efcdff
BLAKE2b-256 21654bf6cb363c220a10df8389b740726c4c04b2d9840fa4aab2338a2be8f7e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fb737e2a1656a59fd02b1c9ee6b8ca35432b254e5d22226b1930396387cee04
MD5 2dad7e468dc68d6d6751e5b181d019bc
BLAKE2b-256 bedc75c3603004cc2fbced62a1d908531e5d82e16908a1833b0861169fa9cf6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b982f139066dcd8465bc4c3e1617c0049d1be40810038830ad91e94e350f8759
MD5 9d3375518e5da4722efbe575ed4d1190
BLAKE2b-256 0f8f7685df2138a9a63a63eb028f0ff97e4e11e6970c63afec3a6d3f22c5a52c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9347ba9d76310f25cabd6c3c11e5f2fc0cb1ce74042086b1fcf062d806740e93
MD5 9372db59e9d3c60b1e8e0e69ac430f93
BLAKE2b-256 c6998aa01f539365827c369176c09c71759f27c7dffe0688b17b4a394a3597e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8b5d786b54b813f72288942143bf6a7c07a4657e2481ad34abf0ed99f8ad67bd
MD5 09e10f7879e7d832d75b8d1eaf0cc29d
BLAKE2b-256 56335988070a422ff26b8f1befba2d0957f8f8fff9362ecf418c8fe6aa357e96

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4297a4f8e3b9266d12a0f7c4f30ad9a554040879662666abfe1c6f000b825be0
MD5 f54733c05a63e18bb8cfaa4d6f9db5d1
BLAKE2b-256 7a944233a9c46596fe8377fc3c65b3f8885db42fd3a190142deb8fc3f09e2957

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp38-cp38-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddc56b3bf1605b68509fc108cd3ee4ce6150c3bfab4fbf1a70d15d5296e97a86
MD5 4927bd12fb388c397710be7bd510e21c
BLAKE2b-256 c4a2b52b83ba8ee7dec85484eac4631cf2ada1df81bca980e6edd92e27c46b2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp38-cp38-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daf9d235a99745e1deb6d34dfd448d1cda6d9bf6867a0fce76f2e52cc62e130d
MD5 a5e3a965322f437002b16e5561f8d369
BLAKE2b-256 b6b5be18e1e1ee98247930b8e7027240887bd557cf6db0a5e41101f3942a3826

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7876b892479e17e078077cbe3aa957adeb333e2fcd2c8a7f14eae07ff5e48739
MD5 bbda5696962425bc7fa4b451c8b7cadb
BLAKE2b-256 5bcc6764ae74d93911b5e6091ae158a053c545b2c8d8ae54126c6e6f2cad5cee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp38-cp38-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8fa105810f2a7ece175ffe04c64d75f5a053776607b53b66766c038b2eca7540
MD5 332819f953edb699e55ee608ef25b6ad
BLAKE2b-256 31f508dd6a693ccbd863a8c0e2ba7737d64ca4c96ad2c3dd2b401f01a49d7e4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp37-cp37m-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da4be0f7a07587158289a4d0994dd6b3c77b73ccfc7535434e2d3d6e5efb670f
MD5 208c8d6ac5dc7d9dc0c3729227a1b121
BLAKE2b-256 311229d21c16a565e436441139ab986d9024d1fe8db25d2d3ed86eeda308900a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp37-cp37m-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 080f3b3c4ec607a28198ad3a534dc07b045d713497cbe795137a5bc21c99fe9e
MD5 fe744d654c004946a5d0680b02744ed8
BLAKE2b-256 f1f27bc77e168c36a6abc94d6063fbc2a2b602994fae8e8b52c3dfad72479c5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp37-cp37m-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 41b25fb353c368b2ecff25b3451ea97462ab5b2a5a7606c829c1d65e9073f594
MD5 c4d1c109c1275dce1dee6beac422f9c8
BLAKE2b-256 c28d9df3d09438729b958734b65490dbd65c94baf4a2bcf5c6273f4f1d0ba9ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp37-cp37m-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d3f3f175b968ea7c93834f5fe45ced8875710862da6fc97d65eac67344de8d4a
MD5 649257a4d28d3d442c171d2a68e66982
BLAKE2b-256 5d34aac5f00329c52d670587d0651464a927c4f3ec0c72c898c11208a58bf3fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp36-cp36m-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp36-cp36m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0048df8aaa8f2d4a662e912d8f1e533a2693e2e4d6085230d55c391f0a1fcf91
MD5 eb10a574bafe218043db93ab8ba109f3
BLAKE2b-256 937f128661945f8628fd40667e0bc8e3211ef47cea1fd94f0317c44dad79ff3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp36-cp36m-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp36-cp36m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp36-cp36m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eba7bf3427516917934f00deb556b732978a0e8c1eacc889a3c61b93d4d0e4da
MD5 9c507f5df2ffd740eb16c3ad4f7fc354
BLAKE2b-256 7fc595e4df15e9f6087fbb9c661aef11c03cf3e037b82b72dbbc6e0b42f614bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp36-cp36m-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.4.2-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.4.2-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 84d03f7fee3702771e9f4d9fa8cf33ac350d7ce2483d247b535035c159dff9e3
MD5 a2e95c33caf425236b83cf8580530b82
BLAKE2b-256 26c2cd81ddb28bd86f0c89fdb7be193bdd0be46d858e31e8101e773116896ec6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.4.2-cp36-cp36m-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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 Sentry Error logging StatusPage Status page