Skip to main content

A utility to extract go build info information fro go executables and shared libraries

Project description

A python package that extracts go build information from go based executables, go.mod and go.sum files and shared libraries. The package leverages the golang debug/buildinfo and golang.org/x/mod/modfile packages to extract the information hence relies on a shared library to do this work.

Example usage

from pygobuildinfo import get_go_build_info, get_go_mod, get_go_sum
import json


def test_get_info(file):
    res = get_go_build_info(file)
    print(json.dumps(res, indent=4))

def test_go_mod(file):
    res = get_go_mod(file)
    print(json.dumps(res,indent=4))

def test_go_sum(file):
    res = get_go_sum(file)
    print(json.dumps(res,indent=4))

test_get_info("foo/bar")
test_get_info("/usr/bin/du")
test_get_info("/Users/auser/go/src/spire/support/oidc-discovery-provider/oidc-discovery-provider.elf")
test_get_info("/Users/auser/go/src/spire/support/oidc-discovery-provider/oidc-discovery-provider.exe")
test_get_info("/Users/auser/go/src/spire/support/oidc-discovery-provider/oidc-discovery-provider")
test_get_info("/Users/auser/go/pygobuildinfo/pybuildInfo/_pyGoBuildinfo.cpython-39-darwin.so")
test_go_mod("/Users/auser/go/src/pygobuildInfo/go.mod")
test_go_sum("/Users/auser/go/src/pygobuildInfo/go.sum")

The result returned is always a dict object for errors the dictionary returned contains a key; "error" like;

{
    "error": "path error:foo/bar"
}

or

{
    "error": "/usr/bin/du: could not read Go build info from /usr/bin/du: unrecognized file format"
}

on success a python dict of the buildinfo struct is returned

{
    "GoVersion": "go1.18.4",
    "Path": "github.com/spiffe/spire/support/oidc-discovery-provider",
    "Main": {
        "Path": "github.com/spiffe/spire",
        "Version": "(devel)",
        "Sum": "",
        "Replace": null
    },
    "Deps": [
        {
            "Path": "github.com/DataDog/datadog-go",
            "Version": "v3.2.0+incompatible",
            "Sum": "h1:qSG2N4FghB1He/r2mFrWKCaL7dXCilEuNEeAn20fdD4=",
            "Replace": null
        },
        {
            "Path": "github.com/andres-erbsen/clock",
            "Version": "v0.0.0-20160526145045-9e14626cd129",
            "Sum": "h1:MzBOUgng9orim59UnfUTLRjMpd09C5uEVQ6RPGeCaVI=",
            "Replace": null
        },
        {
            "Path": "github.com/armon/go-metrics",
            "Version": "v0.4.0",
            "Sum": "h1:yCQqn7dwca4ITXb+CbubHmedzaQYHhNhrEXLYUeEe8Q=",
            "Replace": null
        },
        {
            "Path": "github.com/beorn7/perks",
            "Version": "v1.0.1",
            "Sum": "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
            "Replace": null
        },
        {
            "Path": "github.com/cespare/xxhash/v2",
            "Version": "v2.1.2",
            "Sum": "h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE=",
            "Replace": null
        },
        {
            "Path": "github.com/fatih/color",
            "Version": "v1.13.0",
            "Sum": "h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w=",
            "Replace": null
        },
        {
            "Path": "github.com/felixge/httpsnoop",
            "Version": "v1.0.2",
            "Sum": "h1:+nS9g82KMXccJ/wp0zyRW9ZBHFETmMGtkk+2CTTrW4o=",
            "Replace": null
        },
        {
            "Path": "github.com/golang/protobuf",
            "Version": "v1.5.2",
            "Sum": "h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=",
            "Replace": null
        },
        {
            "Path": "github.com/gorilla/handlers",
            "Version": "v1.5.1",
            "Sum": "h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4=",
            "Replace": null
        },
        {
            "Path": "github.com/hashicorp/go-hclog",
            "Version": "v1.2.1",
            "Sum": "h1:YQsLlGDJgwhXFpucSPyVbCBviQtjlHv3jLTlp8YmtEw=",
            "Replace": null
        },
        {
            "Path": "github.com/hashicorp/go-immutable-radix",
            "Version": "v1.3.1",
            "Sum": "h1:DKHmCUm2hRBK510BaiZlwvpD40f8bJFeZnpfm2KLowc=",
            "Replace": null
        },
        {
            "Path": "github.com/hashicorp/golang-lru",
            "Version": "v0.5.4",
            "Sum": "h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=",
            "Replace": null
        },
        {
            "Path": "github.com/hashicorp/hcl",
            "Version": "v1.0.1-0.20190430135223-99e2f22d1c94",
            "Sum": "h1:LaH4JWe6Q7ICdxL5raxQjSRw7Pj8uTtAENrjejIYZIg=",
            "Replace": null
        },
        {
            "Path": "github.com/mattn/go-colorable",
            "Version": "v0.1.12",
            "Sum": "h1:jF+Du6AlPIjs2BiUiQlKOX0rt3SujHxPnksPKZbaA40=",
            "Replace": null
        },
        {
            "Path": "github.com/mattn/go-isatty",
            "Version": "v0.0.14",
            "Sum": "h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=",
            "Replace": null
        },
        {
            "Path": "github.com/matttproud/golang_protobuf_extensions",
            "Version": "v1.0.2-0.20181231171920-c182affec369",
            "Sum": "h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=",
            "Replace": null
        },
        {
            "Path": "github.com/pkg/errors",
            "Version": "v0.9.1",
            "Sum": "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
            "Replace": null
        },
        {
            "Path": "github.com/prometheus/client_golang",
            "Version": "v1.12.2",
            "Sum": "h1:51L9cDoUHVrXx4zWYlcLQIZ+d+VXHgqnYKkIuq4g/34=",
            "Replace": null
        },
        {
            "Path": "github.com/prometheus/client_model",
            "Version": "v0.2.0",
            "Sum": "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=",
            "Replace": null
        },
        {
            "Path": "github.com/prometheus/common",
            "Version": "v0.32.1",
            "Sum": "h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4=",
            "Replace": null
        },
        {
            "Path": "github.com/prometheus/procfs",
            "Version": "v0.7.3",
            "Sum": "h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU=",
            "Replace": null
        },
        {
            "Path": "github.com/sirupsen/logrus",
            "Version": "v1.8.1",
            "Sum": "h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=",
            "Replace": null
        },
        {
            "Path": "github.com/spiffe/go-spiffe/v2",
            "Version": "v2.0.1-0.20220414143532-2ed460a8b9d3",
            "Sum": "h1:FpqM5PfWHs4Ze36HwzMpRefrv8kkmxFgtG9Qc6hL7Dc=",
            "Replace": null
        },
        {
            "Path": "github.com/spiffe/spire-api-sdk",
            "Version": "v1.2.2-0.20220317172821-e2705b35aa09",
            "Sum": "h1:2oavALIvyKv+M9Q2CWoz3UlJn4DT+oAhVO1qIgaq0GA=",
            "Replace": null
        },
        {
            "Path": "github.com/twmb/murmur3",
            "Version": "v1.1.6",
            "Sum": "h1:mqrRot1BRxm+Yct+vavLMou2/iJt0tNVTTC0QoIjaZg=",
            "Replace": null
        },
        {
            "Path": "github.com/uber-go/tally/v4",
            "Version": "v4.1.2",
            "Sum": "h1:NlU/4j+AAaPHG7yxQVmu0QY7H0W9FFDjFznwAU0t+rE=",
            "Replace": null
        },
        {
            "Path": "github.com/zeebo/errs",
            "Version": "v1.3.0",
            "Sum": "h1:hmiaKqgYZzcVgRL1Vkc1Mn2914BbzB0IBxs+ebeutGs=",
            "Replace": null
        },
        {
            "Path": "go.uber.org/atomic",
            "Version": "v1.9.0",
            "Sum": "h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=",
            "Replace": null
        },
        {
            "Path": "golang.org/x/crypto",
            "Version": "v0.0.0-20220511200225-c6db032c6c88",
            "Sum": "h1:Tgea0cVUD0ivh5ADBX4WwuI12DUd2to3nCYe2eayMIw=",
            "Replace": null
        },
        {
            "Path": "golang.org/x/net",
            "Version": "v0.0.0-20220624214902-1bab6f366d9e",
            "Sum": "h1:TsQ7F31D3bUCLeqPT0u+yjp1guoArKaNKmCr22PYgTQ=",
            "Replace": null
        },
        {
            "Path": "golang.org/x/sys",
            "Version": "v0.0.0-20220624220833-87e55d714810",
            "Sum": "h1:rHZQSjJdAI4Xf5Qzeh2bBc5YJIkPFVM6oDtMFYmgws0=",
            "Replace": null
        },
        {
            "Path": "golang.org/x/text",
            "Version": "v0.3.7",
            "Sum": "h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=",
            "Replace": null
        },
        {
            "Path": "google.golang.org/genproto",
            "Version": "v0.0.0-20220624142145-8cd45d7dbd1f",
            "Sum": "h1:hJ/Y5SqPXbarffmAsApliUlcvMU+wScNGfyop4bZm8o=",
            "Replace": null
        },
        {
            "Path": "google.golang.org/grpc",
            "Version": "v1.47.0",
            "Sum": "h1:9n77onPX5F3qfFCqjy9dhn8PbNQsIKeVU04J9G7umt8=",
            "Replace": null
        },
        {
            "Path": "google.golang.org/protobuf",
            "Version": "v1.28.0",
            "Sum": "h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw=",
            "Replace": null
        },
        {
            "Path": "gopkg.in/square/go-jose.v2",
            "Version": "v2.6.0",
            "Sum": "h1:NGk74WTnPKBNUhNzQX7PYcTLUjoq7mzKk2OKbvwk2iI=",
            "Replace": null
        }
    ],
    "Settings": [
        {
            "Key": "-compiler",
            "Value": "gc"
        },
        {
            "Key": "CGO_ENABLED",
            "Value": "0"
        },
        {
            "Key": "GOARCH",
            "Value": "amd64"
        },
        {
            "Key": "GOOS",
            "Value": "linux"
        },
        {
            "Key": "GOAMD64",
            "Value": "v1"
        },
        {
            "Key": "vcs",
            "Value": "git"
        },
        {
            "Key": "vcs.revision",
            "Value": "6cdc33ac0c19ca30b9e76313e8f17cfba0c86996"
        },
        {
            "Key": "vcs.time",
            "Value": "2022-07-13T19:09:00Z"
        },
        {
            "Key": "vcs.modified",
            "Value": "true"
        }
    ]
}

For go_sum and go_mod the structure will be similar with less info a go.sum does not know the module its part of nor go versions so just has dependencies, versions and hashes. For a go.mod it may have go version will have module path and dependencies but no hashes.

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

pygobuildinfo-0.1.25.tar.gz (12.9 kB view details)

Uploaded Source

Built Distributions

pygobuildinfo-0.1.25-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

pygobuildinfo-0.1.25-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygobuildinfo-0.1.25-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pygobuildinfo-0.1.25-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

pygobuildinfo-0.1.25-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygobuildinfo-0.1.25-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pygobuildinfo-0.1.25-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

pygobuildinfo-0.1.25-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygobuildinfo-0.1.25-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pygobuildinfo-0.1.25-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pygobuildinfo-0.1.25-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.25-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

pygobuildinfo-0.1.25-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pygobuildinfo-0.1.25-cp313-cp313-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pygobuildinfo-0.1.25-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pygobuildinfo-0.1.25-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.25-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

pygobuildinfo-0.1.25-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pygobuildinfo-0.1.25-cp312-cp312-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pygobuildinfo-0.1.25-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pygobuildinfo-0.1.25-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.25-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

pygobuildinfo-0.1.25-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pygobuildinfo-0.1.25-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pygobuildinfo-0.1.25-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pygobuildinfo-0.1.25-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.25-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

pygobuildinfo-0.1.25-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pygobuildinfo-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pygobuildinfo-0.1.25-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

pygobuildinfo-0.1.25-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.25-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

pygobuildinfo-0.1.25-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pygobuildinfo-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pygobuildinfo-0.1.25-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

pygobuildinfo-0.1.25-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.25-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pygobuildinfo-0.1.25-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pygobuildinfo-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pygobuildinfo-0.1.25-cp37-cp37m-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.25-cp37-cp37m-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pygobuildinfo-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pygobuildinfo-0.1.25-cp36-cp36m-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.25-cp36-cp36m-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.25-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pygobuildinfo-0.1.25-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pygobuildinfo-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pygobuildinfo-0.1.25.tar.gz.

File metadata

  • Download URL: pygobuildinfo-0.1.25.tar.gz
  • Upload date:
  • Size: 12.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pygobuildinfo-0.1.25.tar.gz
Algorithm Hash digest
SHA256 8242ed5c8eb716fcd419cbffd7dc8d2a45e9d71336a94b850c1101409f17bfc9
MD5 85b6b14b336a1a8b14d296bac0371cc5
BLAKE2b-256 83247929d30fb8663ddc2926259a17e50fc96cd1eb29463f9a008f73c45e24dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25.tar.gz:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7d26f5df8aa227a80aaf26359326e4eefce6ab6d51d442675821dca626fadf4
MD5 2816f8bb638b147c143c4e8823137404
BLAKE2b-256 c4d12eb6bacf36bb9bf0e9066e49443421bfebbc1076021c7ddc0e9c12385564

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62184296440d9e281f8c04f3159343ec6eea3eb7806fc948e475904cbeeaddfa
MD5 7ef59631fc2ae1f253ab09e61168a02e
BLAKE2b-256 68443e8baebb033e22315e4844ac8c4622797564326d6c3da531165686728747

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dc58470caa1a9871c54cff83938ed70e21803815c7691310cb95a5c43d29449
MD5 dd26519bb94aa053a7c675a59189aab0
BLAKE2b-256 0a0cf9bc5364ca5fb0007ef72f2b370057da7615e755e192788fceedc8f32ff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aadb701300bfb762781281a7a7c104f0c081c48102b42f8acb85ca084b90ad62
MD5 342ff71f62d621a04375715b66bb3ccb
BLAKE2b-256 c02abf4b155ef0d195b31c598c0409b78916482be6b6d604ded7176a1a32226c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 942c6c828290bb72337be001efa35383535ddc7ec856f34d3b5c3ac34f8d8e64
MD5 ca511f2a6a1d2bdd5f89c98386b6d9c5
BLAKE2b-256 2778b20c4bfe31d8025ede59e56b1f9745780753d9b33c6729a5b11152e10921

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28b021dbb7027ee8cb57afa4b6cbaa7914d5c4490031202615641f89c705a26f
MD5 0cccd1eb64eb7e38f138cf7c11ecf655
BLAKE2b-256 354c88b3b7a7686339849751e6cf729edae301077d77acf77ce9384ae0dfa9de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5f870873db67d327f1154151ae862c2f4276000b9e49fa4cfba2259d3fe772c
MD5 416ad2031224700565e66f1cf9d6f492
BLAKE2b-256 004befaae3d0601bb84669464eac1db0aa2a0a91060739ff3fbf119dc643c348

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e9262c5bb0995820597db40f3a6217fe300030399d62c4781444404e6f50a02f
MD5 6f85a6cf607c0150d7ff720dbac3e065
BLAKE2b-256 4f7a1358019f6c2582fde9072058ee361ffe05508b3abf14d7b01682ab1e46fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 769dfe1e9666b4c4ca2c2762c94d39ceb5a47c6e114035d8c9f542fbf2c41f41
MD5 32798443ab4ef8405f848674353d721f
BLAKE2b-256 b6f67f99e8c4f1ca038da48b71a564c2f8e4dfd19a1ae13ef9e511c83fcc47c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31caa343e8463029345047faed70e79f8f1c7626c9827cde3c30160be0caa942
MD5 f008872c9b92a62507bfa1955f9bcc70
BLAKE2b-256 52fe263014302c5d99b73bad0b1f1a2051e02041dbdbcdd11cfd7846d041c51f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f742c4b036a4f4c0a74b1d8cae8cb9abea0156b1affff4995ca20946efb5c0cc
MD5 f7d4b4ec523deb732a6615547bc11c38
BLAKE2b-256 860bb738279ba288e17e6c0126c76d9c0d9c61a18810ef3fbd481a194eaf9320

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 045970646d1a031a9d31d462c6234e8ae950be4f8fcadb9e9f30b8e5edbf7716
MD5 e1eaab63d6add6baa5c095ddfabfb985
BLAKE2b-256 4b5562ade3d4971761d0e97f52e5d71268fed36fdda9826b6327727582095c9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d6b53c2ff9428aa99f20cf0def40d26ecef82404381c8a9e113a321e24727fb
MD5 461e253e0bb2548d38fe12d3284c283f
BLAKE2b-256 217256427f46af3485c0b6716e9e16cbba29eb9f0b0dd07a3a5c6c51e9397f25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faa09ff775abbadc4cd6ee12acbd48b6ac470ffbdcb5693a70efde6a648b6212
MD5 5c99914f167adcea9ce1648f38850009
BLAKE2b-256 855070f7fc4a08691256bae5c1da70c0cbff8ac154f8e62951ec93be0986b43b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e1364925af3f17b4baf6e7daa900781642dbb117222e10a1cefde1e425cc0dd
MD5 a539fae753af0754b5a77bc797ceca83
BLAKE2b-256 8fb1eb6d937bc04de5224484d812ea19fc60a8741d92189751b874a793f5fa4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 039ea1cd4a1c452a7934a6cca5887e9a6fd3a64540a4caa104ba9b171b5dc27b
MD5 de7228c9eba2b53c47591b4fd736b685
BLAKE2b-256 c681e84fe8d51c85a3d1f7620732b016a69a577e832ac4c2cf30911dde507296

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d259754b55875e7b6a22bdfca727316a11ee604015becdfe2d05703b11f4be9
MD5 3f28bf030e77c752d6b71a93f0259740
BLAKE2b-256 c27323f53034c700490669dc64ecdacbbc4ef9ecfec4534e3ede328689c8a0e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 688b521474f103eba1d5df0ea0c15d206dcb42ac4a22bcb02ffef66ea4686c0e
MD5 5bf6c39e0a33dc764f9d336799ed7631
BLAKE2b-256 94b32a9007bae330ce27097cd9276dab3ab979192166dac9ae09ebaa4ca0f922

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9ddbab56cb862a1ac845cbb23611c4f4a67c237ea63c39f2c6bcdc0316eb6065
MD5 65f94864b7789d3a1a677109ef61ebec
BLAKE2b-256 1d5b6e5e6d218faea23267cbaffbe3509872ea07cb5a1d34a4beea3f810b42c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e59f1f2ea848731b17193cb26df9a353ace2c719866f9d5666d60cde24c8d746
MD5 92b7b9ea5c215f61361e107b9526e3bd
BLAKE2b-256 a9e38f335bf975593faf2efe69099dd3d7dbda16211fa2a175b206b452083743

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50c6ca37dca37b5618bdc4b99e0b776bb6206b0bef559f56685329fef0dfc190
MD5 e136a35a64d823b083b2eabade9d7ff4
BLAKE2b-256 617a95294aca4b6002196281a336b361c4566fb8dbeb0d95898d451c7119d450

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4999339d22c0385f4eade03d0662f040a5ebeb5ac34d1c33b899ce750feaf06
MD5 583eca8808729bd592f088b911e98b64
BLAKE2b-256 2bb18e26ebc16c7d8986a9386013d82c02915581b66813f076792ab1b4e4bc2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27fa88531e40ddf023a7508550bc5402e73f2b4870001ee217ea18bd370900b8
MD5 d82a84ad7e86477403ddc7dfbc8ab791
BLAKE2b-256 c5e3f32f545003fccb891e2e49306b6dea5f1374ae58d64d2eeae825342113b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b30b39db82e843e78e118f3fa48e2c05498db19b7d99dad7b98a6b6ff379188
MD5 1d6cabd073f9def5907a71b7c79b5dc5
BLAKE2b-256 0c5799ddfb73d5466a7a665e2577f33ffdba391a87c95ea2a8ab0c3b8142a6e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e990b8ccca35e552da6eb21f37668443e22e815d5d00f62040bae312617772f
MD5 190f226d660aef67647e2c205049816e
BLAKE2b-256 a27e02e09739437255cf3e1de7d3e04577b56169411ced7320a55afcb35cc2ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b37943611c11f3b53d1ca8e76d7c06e6e985c4d2e4e74f8fdff6d59515bb0646
MD5 36477a087c460a52357a18e955326e82
BLAKE2b-256 0172abd50768316317077c0dbe74ecbbe57413ab2e4489b93ecb46b8c3b52950

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 69ac548c0857ddcb8f5848a781467688eaf3ad128c3c25787de4810837a1e3ef
MD5 f899462ebdbc2f7ef7767d111ed6b26c
BLAKE2b-256 ab21b401e471ffda520c6400e865f0c479324ef9f508424ce185e0bf7ed719ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb6b5012b4cad69786f8763f436dd62e966aa0bc7cdf180418e93806845e6abd
MD5 34dae857a9d3ab12c66035f2371c3bac
BLAKE2b-256 ca11175ce6e916e663fd0db8dd4b280867298ba874bea678fcec5a529811ae98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb551ab70af4c4da86753bf2b6d639e77a61afa46b3a3057d6ad320743400573
MD5 ef174487fa8346c41b31aa151db86b2a
BLAKE2b-256 d15ecaafd8e7f2156af83bcb62446255b58e0252650b5161e67897857a147d2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ceba4867aa49c8ff9972d68c3b4ffd8b41990d8cd6c2760eac4f12c3f531c417
MD5 10421c12c47ed2e542e628eb3913f38c
BLAKE2b-256 9f5d9c6211bd5ea5ff4455ce295675797c5b020f40df94dfd84f8018ac88d47b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8512b6448185bc8ca4184ad854e942c2f2373ac692d99058f302b8d7cc22e9db
MD5 ad2702d727c21e02e6d1a35b6737e8f4
BLAKE2b-256 8a97baf01b996cff97137de162ab7cef54604318e95247b3af764468c703e136

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dab1f6535ef8ca8d7b2dc48523b53be95762107432cc8e9a9a5e210c5905f82
MD5 32f6a3495e7676918fa8d349e75e6778
BLAKE2b-256 8ba8e0821e2e39a03b77d97682a35cca45c5659c7a69c52d311faa3253f3377d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 418a869ea128fe6a9388d7b515ee31338f0048c4bfab05dad9d614b9acd1a4f4
MD5 f6e11feef57cb475056d0839c059a5f1
BLAKE2b-256 2994e366112185cc78e05175c4763c4dd9393d052f9cb3235af39e4d224bcecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b38e4c308745c465bd7f5fe06d310ca28d572038e1d70fe9fc37975aee491b13
MD5 603c8d344dbe9a2568c8c0d5b4dd7d0c
BLAKE2b-256 096af7f68169221d0c9233dcce6e85cb43cb444b2d5c94264ae9b9836a55275e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 debd6e7a04e4c40b6bb434fb44fb7817a7fa64832895316a369d4c330336b34c
MD5 2dbe49c1f97c5bf60a8ff6f8fe5090b3
BLAKE2b-256 01369332431ed23ad6ef3970ef452214fb0180006690d025e9fa7769291931e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5174d2b8062fe35b3ee3818abd093d24db745404446cad2335563afc24a2b7ae
MD5 2bc33c2c47ccb7036dd8f9e460723bf1
BLAKE2b-256 3078604fc185394a8915d1f26394f66549d9c0d4ab2c3967735723bdc2eeb1b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec94338f6afc6bf6b180e52a476ea81ffde86a6223d8561fb3ea3a7dae7d8038
MD5 bb4d0f715bd20a7ebb59f40868abb6a0
BLAKE2b-256 ad8a083420365a28617ba27781e62977e746d7033f854e1b2d251df680e3c04b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7eb7b5c6231da9870cb8e1ea2d90bc2a14db0ffa83ba2f4af2f8cf7a89b4375e
MD5 7d5267cebee1d76c95dae8246f4d78af
BLAKE2b-256 05a2ef2333b72ace8ed6104cdaf09d163ee6785fc00cb53e11d0fd50f3237577

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81bea75e2cecdc9fbf7fe877557160b6aca2b52daaf671fec9ff1859c0af0763
MD5 831fb26cd342a7d1e204f9fa4ef5d5d8
BLAKE2b-256 189505a8e8bd227b0152b95215370531fcf26759893156e89fb0bdc532645b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 534dd64844eb575e4f6d9bf7b103cff48e7c85d9d81eded6d92037212adbc115
MD5 171aa84425c4c620263230e8ee5e15d5
BLAKE2b-256 e143dcca5d5cd37a4ac93c4891baedaf67c34f15cd23925347f0e2fa2ae4c67f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e928df91158a2cea154cb113d8a9e5f4ff65909e527989a6087ffc91e526a0c2
MD5 30b44e2e103a182fe43c411a771944ed
BLAKE2b-256 758bcd392211b0bdbd895578155bb6e13b8f7e0dd0e54ffc546fd6d9b8f7abd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fab6645b69a2639b2723ab0560ccfb2120549c12cf2283a3570a6f0724042409
MD5 21467656624a083553e89660d935696e
BLAKE2b-256 e7e068ee21cbb66495d8c1b97be9b615b8f32086d8c54f00e7257622aaa31997

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6800c59b88b750afdb3c757d04ca89ffab9fc3637b2506122550b590d7239cc5
MD5 750755bb818b9bbca097c4814e1711a5
BLAKE2b-256 acc28c6182e378a9c46d575441612c6b180bd81031d9ec927ec4ef96677b2f54

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f11c2d5be8677c71b20d70b1b31c22f58b0e92f8d432bb8027b4c22c0b07890f
MD5 ee82fb739296efaa2e3c4e9fd9535dee
BLAKE2b-256 fd15e016d1a07079554fb0a17e085118c43c17017ae7da98a5528875ca0c11fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 186c37c77acf2a7d16e33ddc48f68d7cada055887db91ab72f14a469ff4fae0a
MD5 92a51c163fe3a5efde6ebb0c87d940fc
BLAKE2b-256 8aa6a86c09567ab0907d72464751fd6f1d98fca84117516b3416839858484317

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e7a817533b9db6c0d95947013b52cb528b557e8ddb03f7ad64294d31ec5b89e
MD5 895aedb94bbab8a83fe022f4d6cb10f7
BLAKE2b-256 48092caa8dcce6d04f78d4365760a29d06c7278e97a34e5cb069e901ef8bb3a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f7eb61d6819a6ac4042226f412561ca47035ba298ca8ee086dcc0c4d20c6c8b
MD5 659c517734c33698b66ec904a0b3a3e4
BLAKE2b-256 babe3325f2da05562701bb951797a008f78559f627ad5ebaea2a25442aa0f439

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fe66a2cfef1be72e9270cb5d9395358bedba193974f78eb7a860711e83528611
MD5 4b6d5d13e503d87b09c60505887d38c1
BLAKE2b-256 a3c700a45973260a5d85f6c91295d447ff2fcde4ffc4d61a422093d3600025bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cd42219ca7e0efb09c0dfc008f3fb56a1e2cc81ca55ba6ae9c942b4d214f7fa
MD5 fab651fca3e5bbeef4c9d8c1c60e5bf3
BLAKE2b-256 6769bdcc2269c47719149684b5e379356a4b24b190839ddb01230dedda2348dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 986cba0251fdea3f46f426428fc70530f5690e7e7da8333658e0665c65f5f52c
MD5 ddd678e57679e1f1b2a6463b5bdaa634
BLAKE2b-256 e1250d9bff05787e6244971faeb066efc8b70684f5b69353af0a4d2eea86e455

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a413e7a0e7b73f5b56c1dddf8d6ae3b5d100fc3302d6f108fb2b8e77999e836
MD5 99a9960c3063903679cb01f1f4c8dbbb
BLAKE2b-256 e97645c4485766fd57f261e9164cc32afc4eabb0e4584ad806f9bbc3d5ee9e0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ba897b2026579119f14c0657aed1e63f21a50f9538350b392e686e4cbd331f7
MD5 21f34a36b34580599c5658ac610644a9
BLAKE2b-256 04c7f20207dafb9265848ce1cc3e3a5d5e120aee4fa570ca8a2f324b4993e46b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c971c51dc4901b6d5b8ccd2778903a70bbf9fe6e8c3a9e587923a8654e5fbfa7
MD5 24773a93bbdc83714b39faabb05eb607
BLAKE2b-256 cdefb08853c0f0dc4d03304799034ba3abc567d98324563281ea6707526e909a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70dfd06c0ccd9400525f41792344e21f525c1c42c60ed7034608b9628600426a
MD5 b29de15d7fda62e684e702370c7899a5
BLAKE2b-256 0f88586347944b040c950d6b86da69655dab107c10709e44fcaf71583de3855f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 638ef280855e99b3eedb2951e9a163ee009235cf628a1383a8d549e4fdf7248e
MD5 716aed09a51511a2c348dcaf6f5a797e
BLAKE2b-256 ddd1cc3a40a62331e644fe8cd37069e95c85e678828c212376b04b9f09889524

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a941308522f01600ed9bbd59fe8191d7b0fb2f84424d2f3b752f3a239784b9d
MD5 5d534f8ea94af746bdd60b048f696d4f
BLAKE2b-256 0a473f15a424b3d307c7fe74680f5a38bbfed232686da70af185393a836e4185

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp37-cp37m-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff24b8e98181163909fa9d35c56433e2870a494235448802ea3b6d57f04d5162
MD5 4eed176849e9c68c97e61242f17c6bc0
BLAKE2b-256 2e8d79088bada0115884f2c4eac33605318d6f9f02568d4e2dfbb0bce6e9aa51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cce6f81c65ef5fa676a0f575b81798b646af6140aa3eefca9370437b46cdefd8
MD5 3ec564f9e0591902b458f522dec4381b
BLAKE2b-256 f2f1c15552624900ee74ab5b624ca97cad9a4f327e29a9f20c6dd52685339c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81d9d49fca67118d7c47c329a83d5031232be5ba6937359605839916533aee86
MD5 d0c6cbe19375f6f5fd9254534de00a84
BLAKE2b-256 73d616e7e7dba8200a0a94b4ff3daceea142d39bbab989d6cb89ccc23a623215

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94542c56169024c4da1eca12195b81db9d24e70a5fd85e8f517340c01ff36e34
MD5 eb27d170fad8e7b1ac7fb78b994324f8
BLAKE2b-256 64c7b3ee86f9bf451babf5e5a9b2362a787e9dd7fe8ac95703207a786cd2199e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp36-cp36m-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fccef97befc4add98eb2b82fdbdde8438b91da53bace2d9939aa6f88c9cb9161
MD5 2a2eb6c22f7f936ae12ff6ef9ab2af7e
BLAKE2b-256 cae2260290c9c5df2d01f99cd148ed1d30924f7c1aa6e118d0a2d449c34583a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp36-cp36m-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea7b3f3005265901353b6ec57823297bc4ba0220ca7533fc53cdb7679ebfdd64
MD5 4ba455f6eb8999c7cd3723ffe84fa9dc
BLAKE2b-256 3c94e2e71603a0dd7bd52c0d3bf195987d34fd342e08028b76810c75961412c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 174cd70ec5c4189ceccd9a8d4a51ddf1e3bc5ee1bfb9b7b49a2574ddfdddcb14
MD5 f7cc71513a430a2da4297237e68a3c17
BLAKE2b-256 b1a87ebc86b73b8ad7a6f5b78bbba85430fadc6da8cfc93db707e01010d440ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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

File details

Details for the file pygobuildinfo-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a089923f60228816da3b839e29175779ebf63fa3aa11a0f63de9a45c991b908
MD5 0f16559ee10f3a943ebd3cf098ef04f5
BLAKE2b-256 c3fcf6d2597d81094f6350e69ec7187a436197072f21adc05a175eafae229c20

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page