Skip to main content

A sample package for learning PyPI deployment and testing

Project description

farms-foo

A sample Python package for learning PyPI deployment and testing for FARMS.

Install

pip install farms-foo

Usage

from farms_foo import hello

print(hello("world"))  # "Hello, world!"

Development

# Create a virtual environment and install dev dependencies
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"

# Run tests
pytest


## Building

### Local build

```bash
python -m build

This compiles Cython extensions and produces a wheel for your current platform + Python version, along with a source distribution.

# Build both (default)
python -m build

# Only sdist
python -m build --sdist

# Only wheel
python -m build --wheel

# Skip the isolated build environment (use your current venv)
python -m build --no-isolation

Cross-platform wheels (CI only)

cibuildwheel runs in GitHub Actions to build wheels across Linux, macOS, and Windows for multiple Python versions. It requires each Python version to be installed, so it's designed for CI — not local use.

To test it locally, you can limit it to your installed Python:

pip install cibuildwheel
CIBW_BUILD="cp312-*" cibuildwheel --output-dir wheelhouse

Replace cp312 with whichever Python version you have installed.

Check before uploading

twine check dist/*

Publishing

TestPyPI (practice)

twine upload --repository testpypi dist/*
pip install --index-url https://test.pypi.org/simple/ farms-foo

PyPI

twine upload dist/*

CI/CD (automated)

The GitHub Actions workflow handles this automatically:

  1. On push/PR to main — builds wheels on Ubuntu, macOS, and Windows across Python 3.9, 3.11, 3.12
  2. On GitHub Release — publishes all wheels + sdist to PyPI via trusted publishing

To trigger a release:

git tag v0.1.0
git push origin v0.1.0

Then create a Release on GitHub from that tag.

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

farms_foo-0.1.4.tar.gz (57.3 kB view details)

Uploaded Source

Built Distributions

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

farms_foo-0.1.4-cp313-cp313-win_amd64.whl (73.0 kB view details)

Uploaded CPython 3.13Windows x86-64

farms_foo-0.1.4-cp313-cp313-win32.whl (71.4 kB view details)

Uploaded CPython 3.13Windows x86

farms_foo-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (141.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

farms_foo-0.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (142.1 kB view details)

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

farms_foo-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (72.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

farms_foo-0.1.4-cp312-cp312-win_amd64.whl (73.0 kB view details)

Uploaded CPython 3.12Windows x86-64

farms_foo-0.1.4-cp312-cp312-win32.whl (71.4 kB view details)

Uploaded CPython 3.12Windows x86

farms_foo-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (142.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

farms_foo-0.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (143.0 kB view details)

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

farms_foo-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (73.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

farms_foo-0.1.4-cp311-cp311-win_amd64.whl (72.5 kB view details)

Uploaded CPython 3.11Windows x86-64

farms_foo-0.1.4-cp311-cp311-win32.whl (71.0 kB view details)

Uploaded CPython 3.11Windows x86

farms_foo-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (136.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

farms_foo-0.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (136.7 kB view details)

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

farms_foo-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (72.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

farms_foo-0.1.4-cp310-cp310-win_amd64.whl (72.3 kB view details)

Uploaded CPython 3.10Windows x86-64

farms_foo-0.1.4-cp310-cp310-win32.whl (71.1 kB view details)

Uploaded CPython 3.10Windows x86

farms_foo-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (131.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

farms_foo-0.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (132.3 kB view details)

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

farms_foo-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (72.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file farms_foo-0.1.4.tar.gz.

File metadata

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

File hashes

Hashes for farms_foo-0.1.4.tar.gz
Algorithm Hash digest
SHA256 c542a2ac990469efc0b99f3999588b7aa01cb6b6dfe27134c43a951d305be1ea
MD5 1d652eabfc225f6acbc66c89d980a191
BLAKE2b-256 73922247aacfcec6dca24696e0a528c41183f38a99d4a7b69baf2c8d5e98a50c

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4.tar.gz:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: farms_foo-0.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 73.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for farms_foo-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c0f6a67df92f68d446515352c984dcb00899ae05370c99272823abf590626442
MD5 c2653748ad184d87f2ce91406bc63caf
BLAKE2b-256 e04117ed15bab426c159d04abf986e8ce56490036d030831bc5eb719bbaebff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp313-cp313-win_amd64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: farms_foo-0.1.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 71.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for farms_foo-0.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 919f25799c1cf543af03b69a782b57ffbbc9b1976abd67c0f386ff17e6340cd5
MD5 4d41cc00507b2fee99f129899af1add3
BLAKE2b-256 a5cce2b98adf654aca9eb51fe9d913f29222333cb1a06001f6763330274e763a

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp313-cp313-win32.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 550225e89b7c2ac2b0b5dc1dc339d5cb62ea7b4aca2b7ae2004a3a014f858a1a
MD5 782ac1de7e736bc5d2e3a5562b864a80
BLAKE2b-256 9f739a051e53278757a449ff8e9aef86ba902a64072464a51b2271cab7fd7a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 026455d18e6b0b87956a2ce14a9d247d9210661fa6b217ab92f4f4c9299969ed
MD5 0190499f6f624655f5301077e7480f1a
BLAKE2b-256 ef0f6f5058ca522d81779fa637b40c2ca6d43c3103eaa7b167010b8a5acac90c

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c824d2e0d15dd8d0d262a6314249ee5cf48f3e26bb9cfa135f6cdb8972496741
MD5 077fda31f9fd18b5b8e62226fbdd38db
BLAKE2b-256 2f3842ceeb01e643788df9ca138e0aa16657f4102f3ff0c7a0e9407059eab392

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: farms_foo-0.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 73.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for farms_foo-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc19b169ff67d6210f7f75ee7da234826838b7b686fe0eeae6973726c47eebcd
MD5 e56b78d6108d3470d528943a3f653ec7
BLAKE2b-256 b911a73e6ef6742967dde0945390257684cafdf2b37c2d5e30b168ed92b579f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp312-cp312-win_amd64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: farms_foo-0.1.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 71.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for farms_foo-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 977df189ba2415c768133bad1f770d958fd179dbf51fe39c5a3cc27e2d959143
MD5 bfb41c1dd220e986e6c50f8ee70d1bb1
BLAKE2b-256 5e5cb729855090717504d19875c2509225ba75ca51e747adf38766476ecbc908

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp312-cp312-win32.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed16c4a6ff71377bcc70e338bcea14a422c94bbce7daea5f3f94510c979026ff
MD5 883f15bd5fc98d3fe0cf41c9987b756b
BLAKE2b-256 d4ac08c2b2e6dd1a1f959f9d33cb1081c154e2ca18972e476ce7599d79939cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c1f3be6efac86b10a1597ab2544eec489dbdc0e7deb866834a2996934e5f7680
MD5 cd1ffe6f6faf93da17b2043964c34889
BLAKE2b-256 24bf0de6e12fc5d16ef25a68d043650733455fe75afec57fb9489c17883c1ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 865b9d8bf3019ef67790b156dca9b14d7564a098aab19543577ccb47e3e8be3e
MD5 0d4ea09caefab0a100f1cb4e89a1e4e5
BLAKE2b-256 4770607f5f83fd85eea996c3cee6247f58b86eb964b8d2bd6c39c263d4ccf09f

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: farms_foo-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 72.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for farms_foo-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c1948d6cbb9831369fac37ecd853e5e497c010dc74fc69cd484815ea44e0c7ac
MD5 9f304f1052590d4097976d386e631ccf
BLAKE2b-256 4e0b49da34ee93203bc2204d967cfc29be4b761db3a11e7151ca968b3794a31d

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp311-cp311-win_amd64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: farms_foo-0.1.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 71.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for farms_foo-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 67d687b299aa3ff164ca7090d9b60028196c1effaa2e62059b977ca6df72474e
MD5 e0f3293c486b3edb0b2755d20fb6a432
BLAKE2b-256 51872e02c5ba8994b0964bb3bdb4e90add7ec077d8b47a79e1025f7971941244

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp311-cp311-win32.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fd20acc98c6827ac6c7daee20b9e6727995425e22c11e1644fa2252d77d1acb
MD5 d18a04e7b93de4b1ca5f9e870c0a1b7c
BLAKE2b-256 32455c9e6ec98a381bf03f2afc0b52e306f9ad09b3c61461e50c4027b4dc31c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e401ba46d1ebdb7a1345bb5b47ff9a42bc778aeb887b01f48b900c4c378d9a10
MD5 69e7642a7ef85ce983377b8ba77b4d6b
BLAKE2b-256 43c214b33c219d4b09c37f407e490fe09037c2badd126e1443aa3cf2c60c206f

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30d611aaf2442d1437a93463bf9e3765fdcb26bf28134bbaa1fa9d8f9f9988fd
MD5 164886efeabcd2cf65906c94348b6b03
BLAKE2b-256 01a0a9a47938b248c61d8c3ba226164228f7e5e22b36aed3403b2060a0475799

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: farms_foo-0.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 72.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for farms_foo-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c37fad7814760dcd120c03c67e331b2b09e6cb3f2f5f5fd36f9ddf0167322e5a
MD5 6a10d46ab573dfa9222ac0fda37e15a6
BLAKE2b-256 175f0165773205443383caaf8f4a7fb97f75a131cf729182cbe485a520757a8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp310-cp310-win_amd64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: farms_foo-0.1.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 71.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for farms_foo-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a295e803db7d40b689eb9abf82a12113efac4a87ffbb92086ac59a8539cc5369
MD5 563e2b7d1bccd33375d73fb5e8fd098f
BLAKE2b-256 ea8a0fa2524d042be7c6e122c3d96e10fd0e6980b924bc62350783c0d8f10f92

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp310-cp310-win32.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed5673ae617c2a63c72b017a14b836e41dfcd6fd9a53389661ef2aacbebafb83
MD5 1071d03a8ae5d4000bc8dc6c376a8ae9
BLAKE2b-256 c2f00f6b4427c2352d29ec2ec710b2aa0398907bbb0b3e0acc6a7a858dd01577

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6fcb4b7270127c0a8ae6126947ba5bdbed8351b9bfe003a189bad9fd466de707
MD5 f13ef7ebe3f34c9d0a64756e9c175ea1
BLAKE2b-256 9970055f1a8e699e2806fba7c617b95fbc6efa04a8e090d177855d493666425a

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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

File details

Details for the file farms_foo-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for farms_foo-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b271630973be4694179e81f683b85742e0c48a9c6e9be5d4fb598096f5a87c2a
MD5 01ae242f65dabfd0d8af133b68ce4a76
BLAKE2b-256 d77b5a637d5893c9264772b1057d2ef593236bbf0b1d336fa0fcf756008e3e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for farms_foo-0.1.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi.yml on farmsim/farms_foo

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