Skip to main content

Add short description here

Project description

Welcome to My C++ Project

License: MIT GitHub Workflow Status PyPI Release Documentation Status codecov

Prerequisites

Building My C++ Project requires the following software installed:

  • A C++14-compliant compiler
  • CMake >= 3.23
  • Doxygen (optional, documentation building is skipped if missing)
  • The testing framework Catch2 for building the test suite
  • Python >= 3.10 for building Python bindings

Building My C++ Project

The following sequence of commands builds My C++ Project. It assumes that your current working directory is the top-level directory of the freshly cloned repository:

cmake -B build
cmake --build build

The build process can be customized with the following CMake variables, which can be set by adding -D<var>={ON, OFF} to the cmake call:

  • test-gha-cookiecutter_BUILD_TESTING: Enable building of the test suite (default: ON)
  • test-gha-cookiecutter_BUILD_DOCS: Enable building the documentation (default: ON)
  • test-gha-cookiecutter_BUILD_PYTHON: Enable building the Python bindings (default: ON)

If you wish to build and install the project as a Python project without having access to C++ build artifacts like libraries and executables, you can do so using pip from the root directory:

python -m pip install .

Testing My C++ Project

When built according to the above explanation (with -Dtest-gha-cookiecutter_BUILD_TESTING=ON), the C++ test suite of My C++ Project can be run using ctest from the build directory:

cd build
ctest

The Python test suite can be run by first pip-installing the Python package and then running pytest from the top-level directory:

python -m pip install .
pytest

Documentation

My C++ Project provides a Sphinx-based documentation, that can be browsed online at readthedocs.org. To build it locally, first ensure the requirements are installed by running this command from the top-level source directory:

pip install -r doc/requirements.txt

Then build the sphinx documentation from the top-level directory:

cmake --build build --target sphinx-doc

The web documentation can then be browsed by opening build/doc/sphinx/index.html in your browser.

Acknowledgments

This repository was set up using the SSC Cookiecutter for C++ Packages.

Project details


Download files

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

Source Distribution

testghacookiecutter-0.0.131.tar.gz (14.8 kB view details)

Uploaded Source

Built Distributions

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

testghacookiecutter-0.0.131-cp314-cp314t-win_amd64.whl (80.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

testghacookiecutter-0.0.131-cp314-cp314t-win32.whl (70.6 kB view details)

Uploaded CPython 3.14tWindows x86

testghacookiecutter-0.0.131-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (76.2 kB view details)

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

testghacookiecutter-0.0.131-cp314-cp314t-macosx_11_0_arm64.whl (63.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

testghacookiecutter-0.0.131-cp314-cp314-win_amd64.whl (75.3 kB view details)

Uploaded CPython 3.14Windows x86-64

testghacookiecutter-0.0.131-cp314-cp314-win32.whl (67.2 kB view details)

Uploaded CPython 3.14Windows x86

testghacookiecutter-0.0.131-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (75.4 kB view details)

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

testghacookiecutter-0.0.131-cp314-cp314-macosx_11_0_arm64.whl (60.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

testghacookiecutter-0.0.131-cp313-cp313-win_amd64.whl (73.3 kB view details)

Uploaded CPython 3.13Windows x86-64

testghacookiecutter-0.0.131-cp313-cp313-win32.whl (65.5 kB view details)

Uploaded CPython 3.13Windows x86

testghacookiecutter-0.0.131-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (75.4 kB view details)

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

testghacookiecutter-0.0.131-cp313-cp313-macosx_11_0_arm64.whl (60.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

testghacookiecutter-0.0.131-cp312-cp312-win_amd64.whl (73.3 kB view details)

Uploaded CPython 3.12Windows x86-64

testghacookiecutter-0.0.131-cp312-cp312-win32.whl (65.5 kB view details)

Uploaded CPython 3.12Windows x86

testghacookiecutter-0.0.131-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (75.3 kB view details)

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

testghacookiecutter-0.0.131-cp312-cp312-macosx_11_0_arm64.whl (60.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

testghacookiecutter-0.0.131-cp311-cp311-win_amd64.whl (73.2 kB view details)

Uploaded CPython 3.11Windows x86-64

testghacookiecutter-0.0.131-cp311-cp311-win32.whl (65.2 kB view details)

Uploaded CPython 3.11Windows x86

testghacookiecutter-0.0.131-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (74.8 kB view details)

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

testghacookiecutter-0.0.131-cp311-cp311-macosx_11_0_arm64.whl (60.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

testghacookiecutter-0.0.131-cp310-cp310-win_amd64.whl (72.0 kB view details)

Uploaded CPython 3.10Windows x86-64

testghacookiecutter-0.0.131-cp310-cp310-win32.whl (64.1 kB view details)

Uploaded CPython 3.10Windows x86

testghacookiecutter-0.0.131-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (73.1 kB view details)

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

testghacookiecutter-0.0.131-cp310-cp310-macosx_11_0_arm64.whl (59.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file testghacookiecutter-0.0.131.tar.gz.

File metadata

  • Download URL: testghacookiecutter-0.0.131.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for testghacookiecutter-0.0.131.tar.gz
Algorithm Hash digest
SHA256 1eba906651d37e884ed31f4acba9afd5f4a3a957fa7f7c888b4b78043b4203f7
MD5 88159b63f676ad8249effcd909fd08e1
BLAKE2b-256 d57abadc06e19756af6e71e10766f38540e291e526f519906eee981230f4d424

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131.tar.gz:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1a7d935c343225843a6360cdfc24685679ecaf464584f62f0e9ab4398ef12b8f
MD5 da7e810dcb119ee7f5624ec2b9a07c9e
BLAKE2b-256 4ed54e33c178ce6d8d9e61506e8ea5c673c89eb040eb3ab0d0c07a725613657d

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp314-cp314t-win_amd64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7d4679d5c0f8efac86d2cbbd1c0c606232a62568033a2db8b0f7d0ad7f7caa07
MD5 e2ed82189dd5c071f271d58dd93e2d4a
BLAKE2b-256 e2da0b7bc92739588f6417a4d8ebffeb9b86e860c7467dea1f3b139cb03d0f31

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp314-cp314t-win32.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 475ffbae4cdd0f3fa9de12fc27e52a272913df6657abf2723407ff7b5e25b8d5
MD5 549062e8fdc499254491ef778b161e4a
BLAKE2b-256 43ba577345d29395f45efe710769d9433f1c3df60682d72c46959b98b8fa458e

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d60d398c137e43fbe5551b1e0fe725b1a4af0a557e11b466983a68eea81ac435
MD5 310e62956b86388c5c795a2e5a9e8e36
BLAKE2b-256 1f336f7d16e966ec5b4f05635f062336fb7a8b72b73accf7da3c683728dbd80b

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2ca9233c2fd736ba8763609897ad95de2409ebe9aee3c4de7b4d8cb5d26a3fbe
MD5 d7f92d7177bfc998bd17640f271d335e
BLAKE2b-256 01a2c7ce9fd778b128c8baa2119b6fcca4c4b2f3e5343fffe37356144076e62d

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp314-cp314-win_amd64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f66ebb01eca802fda38426d963d4149f97f943cfa152300b7ba552ce3b35577d
MD5 be1ffbefa160854f3063d371d192097d
BLAKE2b-256 100901f988d4001d0e91fed76d69e6fc8a9b9bc0fe0a8f313c91f2e868c29a23

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp314-cp314-win32.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfa0768b9460ddbb483b0676ccbfa1075ea2b43b5a51524302c82efdbe4ead94
MD5 fe60e156a6ef7ad36f97b6e3429a35ff
BLAKE2b-256 5d60207ffdbafd746d6c227c72ea5a45d98fce87c684faeee9102781009032e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13816ec3c77e6f055aee549d22cfdf3a073971f82178852a937d3fd972a8bb78
MD5 fdfc2db647474b35cd7812b19a104a71
BLAKE2b-256 dd78f89ad08d345ed151b8d21f908ced09a9c7a8f8545dbd000185dec225a960

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5846f3e84d7df400a421741d7f3db0c9efdc38de63130e3efeb0f25f80dd2c90
MD5 d6b902d2d440dccb5f1c721966464c72
BLAKE2b-256 18f88d229d037378a79d510a6e6bb1a3159778a4bc8604479f56980dd5f2e76d

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp313-cp313-win_amd64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f9b88e9aedb785151a4ac1e0f6cc08ef4eebe2d1e6c715a8152441c1547eb92f
MD5 ae9cee36f6bd1fa95021a6a74e45e41b
BLAKE2b-256 61bd97da6dbf176fb7077634b42dbfac94d8737c8409897911affaae63ae129a

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp313-cp313-win32.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c13f4e648000a022ec322a74dd7f463a9b5a1ae067306661362afc8e15cfbc68
MD5 a55c557421acccab55170fb15c295273
BLAKE2b-256 316c42053f12f54c35cc324bb387288da3a64dd2182ec9074e88966e40798b3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a4e822148a9e298e5526e2b839b425ea49ad708f6e738cd4b6b3000af392987
MD5 c3d4a3f0eae761af2a22c35cd244dd52
BLAKE2b-256 d6f33191ad2704a3e5081b571bb45d70433b313c15b1e43595e0f16a68a9d5f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 42fa0344ada09cbae8ae17d69857e7da601c4f66641841f3e9002fc8547068f3
MD5 b3d99c144aed98ed328f5f9d792fc7a3
BLAKE2b-256 393bc0bca9865eeab3514d26de8296d181235e4972779b8adbee4c5977b0fc61

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp312-cp312-win_amd64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d64e9c22d4a3680fa3ac9aeb83490f03844aac2a7eb16997451c62c7469fd0cd
MD5 2a6f4bdbef4f580757e894ede991b049
BLAKE2b-256 dfa9c46d2915f8090b4a9087fc6c41609a6eda3c72b7dcafdf1d07eb164de993

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp312-cp312-win32.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12bb677db872b7b647d7b2fc850aabf7e1c25a35dec67bf1d58f221d5aa0e382
MD5 d72d51dbab85c1d97281094b5c193931
BLAKE2b-256 9b738c974ae59e45543befa3d33ceecf2f34f168dc98f0585811fda8b5999a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50bdaedac52a4794166943bb2888f2eac4ce3c01e74094194860b08efaddf35a
MD5 f6a9299188132da44d4c395c2fc88f22
BLAKE2b-256 af0294a3b776d697b274d1bc89a2c2e6873c57c6a36d0f99fd3672d70a38df43

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92ef9790c587d204988816428c65eb7b5a60a4fc035a06b33970ad2ac48c2e69
MD5 85363ad910eb91bc9fac3c6551e8a891
BLAKE2b-256 086e03e4ac1842660e1244d0b7b0d08fec905dbad9fec6fdde85960bd5ab4a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp311-cp311-win_amd64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8b1dd81fbf52a5729e962b0d2bfde9e164f73808a045b4c7f8ba9e4b273db746
MD5 72a814b93b6013af77867187d6a977fc
BLAKE2b-256 9f2e8921cab9e0b5cf8bb87c5c22d3331b07bd5e010e19cce4bdc8c638c9643c

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp311-cp311-win32.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1fee1785f435d5856ef6fe851d7404ccb772860233626271bf86df83e845988
MD5 946d6547916cbcdf9d9691c55f8d08d4
BLAKE2b-256 79d9066bf01f39aa5fb5e8131e1bdd8e801d827a59317f79c7437beec7a8ddc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cd6a4434bae9e034872b117b7e1fbb2d4f3dbfec4b477efab75ae8b15925053
MD5 a14d33fac49287b882b943bdaf69bace
BLAKE2b-256 f49328f8a701ac70727a6dc86b9f6ff138b748dbadd818c47502d0036c92a24e

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 18452b1735b2ff5039a88b6d33d47d254ef305fd829a370d319915238326c28f
MD5 bd55f3f4df38d97195741e7d9dafa6f9
BLAKE2b-256 ef23ce24fa43ccfa3dc0546511704f955ab1723080fe7bea7dc7b9768ad4603f

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp310-cp310-win_amd64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 611c4cdb2224cf12526a0cc1dbadcdf2890f1599ff8801aa73d3e66b1f54c9ed
MD5 c2d0d4c691bed7e94a86c442a72aebee
BLAKE2b-256 45f8a902ee64d0a87f7bee5f60ecbfc24aa3fdab9ca0f9a29155168f797b0318

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp310-cp310-win32.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb4f42c7ce2338da9f1c583d62d3e2a9d0af43e59a296c45ecc56c8386d31531
MD5 c49621f3edb058b49a21b7b6dd081280
BLAKE2b-256 e386bc258c8d87d04d1c52935f3958cc557280ad3234fb8c747843bd93f70675

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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

File details

Details for the file testghacookiecutter-0.0.131-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for testghacookiecutter-0.0.131-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd678c94b627c884f6d4395cf7fe30c56b7e90335caad5ef32b9425bcbc7f425
MD5 5627a98bd927c23ab23b29be6cf651ae
BLAKE2b-256 bed1cb8506293a18633d57c37b0b0ef8cfe8ce7bb1fd2c3f9ef63386c4d64d6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for testghacookiecutter-0.0.131-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi.yml on dokempf/test-gha-cookiecutter

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