google-re2 1.1.20251105
pip install google-re2
Released:
RE2 Python bindings
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
๐ Avatar for google_opensource from gravatar.comgoogle_opensource ๐ Avatar for re2-dev from gravatar.com
re2-dev
Unverified details
These details have not been verified by PyPIMeta
- License: BSD License
- Author: The RE2 Authors
- Requires: Python ~=3.9
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
Project description
A drop-in replacement for the re module.
It uses RE2 under the hood, of course, so various PCRE features
(e.g. backreferences, look-around assertions) are not supported.
See https://github.com/google/re2/wiki/Syntax for the canonical
reference, but known syntactic "gotchas" relative to Python are:
* PCRE supports \Z and \z; RE2 supports \z; Python supports \z,
but calls it \Z. You must rewrite \Z to \z in pattern strings.
Known differences between this module's API and the re module's API:
* The error class does not provide any error information as attributes.
* The Options class replaces the re module's flags with RE2's options as
gettable/settable properties. Please see re2.h for their documentation.
* The pattern string and the input string do not have to be the same type.
Any str will be encoded to UTF-8.
* The pattern string cannot be str if the options specify Latin-1 encoding.
Known issues with regard to building the C++ extension:
* Building requires RE2 to be installed on your system.
On Debian, for example, install the libre2-dev package.
* Building requires pybind11 to be installed on your system OR venv.
On Debian, for example, install the pybind11-dev package.
For a venv, install the pybind11 package from PyPI.
* Building on macOS is known to work, but has been known to fail.
For example, the system Python may not know which compiler flags
to set when building bindings for software installed by Homebrew;
see https://docs.brew.sh/Homebrew-and-Python#brewed-python-modules.
* Building on Windows has not been tested yet and will probably fail.
Project details
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
๐ Avatar for google_opensource from gravatar.comgoogle_opensource ๐ Avatar for re2-dev from gravatar.com
re2-dev
Unverified details
These details have not been verified by PyPIMeta
- License: BSD License
- Author: The RE2 Authors
- Requires: Python ~=3.9
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
Uploaded
CPython 3.14Windows ARM64
Uploaded
CPython 3.14Windows x86-64
Uploaded
CPython 3.14Windows x86
Uploaded
CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.14macOS 15.0+ x86-64
Uploaded
CPython 3.14macOS 15.0+ ARM64
Uploaded
CPython 3.14macOS 14.0+ x86-64
Uploaded
CPython 3.14macOS 14.0+ ARM64
Uploaded
CPython 3.14macOS 13.0+ x86-64
Uploaded
CPython 3.14macOS 13.0+ ARM64
Uploaded
CPython 3.13Windows ARM64
Uploaded
CPython 3.13Windows x86-64
Uploaded
CPython 3.13Windows x86
Uploaded
CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.13macOS 15.0+ x86-64
Uploaded
CPython 3.13macOS 15.0+ ARM64
Uploaded
CPython 3.13macOS 14.0+ x86-64
Uploaded
CPython 3.13macOS 14.0+ ARM64
Uploaded
CPython 3.13macOS 13.0+ x86-64
Uploaded
CPython 3.13macOS 13.0+ ARM64
Uploaded
CPython 3.12Windows ARM64
Uploaded
CPython 3.12Windows x86-64
Uploaded
CPython 3.12Windows x86
Uploaded
CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.12macOS 15.0+ x86-64
Uploaded
CPython 3.12macOS 15.0+ ARM64
Uploaded
CPython 3.12macOS 14.0+ x86-64
Uploaded
CPython 3.12macOS 14.0+ ARM64
Uploaded
CPython 3.12macOS 13.0+ x86-64
Uploaded
CPython 3.12macOS 13.0+ ARM64
Uploaded
CPython 3.11Windows ARM64
Uploaded
CPython 3.11Windows x86-64
Uploaded
CPython 3.11Windows x86
Uploaded
CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.11macOS 15.0+ x86-64
Uploaded
CPython 3.11macOS 15.0+ ARM64
Uploaded
CPython 3.11macOS 14.0+ x86-64
Uploaded
CPython 3.11macOS 14.0+ ARM64
Uploaded
CPython 3.11macOS 13.0+ x86-64
Uploaded
CPython 3.11macOS 13.0+ ARM64
Uploaded
CPython 3.10Windows x86-64
Uploaded
CPython 3.10Windows x86
Uploaded
CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.10macOS 15.0+ x86-64
Uploaded
CPython 3.10macOS 15.0+ ARM64
Uploaded
CPython 3.10macOS 14.0+ x86-64
Uploaded
CPython 3.10macOS 14.0+ ARM64
Uploaded
CPython 3.10macOS 13.0+ x86-64
Uploaded
CPython 3.10macOS 13.0+ ARM64
File details
Details for the file google_re2-1.1.20251105.tar.gz.
File metadata
- Download URL: google_re2-1.1.20251105.tar.gz
- Upload date:
- Size: 11.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1db14a292ee8303b91e91e7c37e05ac17d3c467f29416c79ac70a78be3e65bda
|
|
| MD5 |
1538683f0f644bdfe55529b53fcbb11f
|
|
| BLAKE2b-256 |
6b60805c654ba53d685513df955ee745f71920fe8e6a284faf0f9b9dc19b659c
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105.tar.gz:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105.tar.gz -
Subject digest:
1db14a292ee8303b91e91e7c37e05ac17d3c467f29416c79ac70a78be3e65bda - Sigstore transparency entry: 671482854
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 643.1 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d27f3a2a947ec1f721d0f14f661108acfd4f4d34f357ce28db951cc036656e5
|
|
| MD5 |
9a12917d2c41717abf6ea9d4bb39cac2
|
|
| BLAKE2b-256 |
6fd14adcfcb9c95e3d064c9f7aaf6cb3a4fc842d86115014b9d4094db4d465b5
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-win_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-win_arm64.whl -
Subject digest:
1d27f3a2a947ec1f721d0f14f661108acfd4f4d34f357ce28db951cc036656e5 - Sigstore transparency entry: 671485653
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 491.9 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d4d5fdadd329a2ed193463899d00ef2fd126172f36a4c01c9def271f19801b6
|
|
| MD5 |
685daf9ae6f3e0cb363ba9e2d834cb1c
|
|
| BLAKE2b-256 |
96b374e301211699f1b650ba7690a3e4e52146ac4266fcd62f3ea0a945b9eda4
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-win_amd64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-win_amd64.whl -
Subject digest:
6d4d5fdadd329a2ed193463899d00ef2fd126172f36a4c01c9def271f19801b6 - Sigstore transparency entry: 671483221
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-win32.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-win32.whl
- Upload date:
- Size: 433.8 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
214c1accdc60fff9ce1bf812b157147ca361844f496ed9e0d5f357b0e562ced8
|
|
| MD5 |
a601b789202986ff5e3288eba397b57d
|
|
| BLAKE2b-256 |
14ea144bbc4b9359da89aec07b4c2a91a6bfe7119914885386577c665b07bb01
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-win32.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-win32.whl -
Subject digest:
214c1accdc60fff9ce1bf812b157147ca361844f496ed9e0d5f357b0e562ced8 - Sigstore transparency entry: 671486394
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 591.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7bfaa2cf55daf0c5c650e68526bb20b61e37d7f3ae53f6893013acc1c91c116
|
|
| MD5 |
721780552bdb9277dfc3975fbcea0e32
|
|
| BLAKE2b-256 |
03bea8def96aa4a80b233e105767d22e3de961dcde5a04f0a05cb4f3ddb4df78
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a7bfaa2cf55daf0c5c650e68526bb20b61e37d7f3ae53f6893013acc1c91c116 - Sigstore transparency entry: 671483078
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 573.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85feec3161ffdc12f6b144e37a2f91f80b771c72ffadde60191e89a49f6d7e81
|
|
| MD5 |
54e646e8eea9dbba156b11aa65552714
|
|
| BLAKE2b-256 |
c49d213dce5de401527369fb5af11096b18c06001d9eb71f3318fe5eba1ec706
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
85feec3161ffdc12f6b144e37a2f91f80b771c72ffadde60191e89a49f6d7e81 - Sigstore transparency entry: 671485562
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-macosx_15_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-macosx_15_0_x86_64.whl
- Upload date:
- Size: 510.2 kB
- Tags: CPython 3.14, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0476b07421b8882b279d5ceb5b760c15c62d581ded95274697fc1227e3869ee6
|
|
| MD5 |
6e439bbbbedd6e7a92ed1fe305f00138
|
|
| BLAKE2b-256 |
d1a616a09e03d1de128f821869e4252688c21319f5017d9209f4d0e71ea5c951
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-macosx_15_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-macosx_15_0_x86_64.whl -
Subject digest:
0476b07421b8882b279d5ceb5b760c15c62d581ded95274697fc1227e3869ee6 - Sigstore transparency entry: 671485207
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-macosx_15_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-macosx_15_0_arm64.whl
- Upload date:
- Size: 483.4 kB
- Tags: CPython 3.14, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79ce664038194a31bbcf422137f9607ae3d9946a5cff98cf0efbeb7f9411e64b
|
|
| MD5 |
c2a9b13a35e6f1190adf71eb86cd44c3
|
|
| BLAKE2b-256 |
5fee8b6f7d94bb689dafdf60de8dd8f8f6296ad40d4d15c933fcda4da7a3a06b
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-macosx_15_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-macosx_15_0_arm64.whl -
Subject digest:
79ce664038194a31bbcf422137f9607ae3d9946a5cff98cf0efbeb7f9411e64b - Sigstore transparency entry: 671483405
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-macosx_14_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-macosx_14_0_x86_64.whl
- Upload date:
- Size: 519.0 kB
- Tags: CPython 3.14, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3168d7bbac247c862ea85b2f3c011d3a04bedcb6892b37f14d488f4133b206e
|
|
| MD5 |
1faf09f6ea3450fc3e110050e391be68
|
|
| BLAKE2b-256 |
cafc7a97ffd36d451e5a8bfaff2f9022b14807795d588f98227ff96e8da99856
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-macosx_14_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-macosx_14_0_x86_64.whl -
Subject digest:
f3168d7bbac247c862ea85b2f3c011d3a04bedcb6892b37f14d488f4133b206e - Sigstore transparency entry: 671486024
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-macosx_14_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-macosx_14_0_arm64.whl
- Upload date:
- Size: 486.4 kB
- Tags: CPython 3.14, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41be22359c3dceb582937739b4365dd8e279de24ad0a5b10e653503abaff2ed7
|
|
| MD5 |
44ac45a7603a1d8f58a737b2a0fc1f9e
|
|
| BLAKE2b-256 |
f716a1e6768513f788bf9c67a1cfe379ef34a793983eee46e4b653e42b558b78
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-macosx_14_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-macosx_14_0_arm64.whl -
Subject digest:
41be22359c3dceb582937739b4365dd8e279de24ad0a5b10e653503abaff2ed7 - Sigstore transparency entry: 671482928
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-macosx_13_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-macosx_13_0_x86_64.whl
- Upload date:
- Size: 517.7 kB
- Tags: CPython 3.14, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e2186d2c90488c1e11895343941f35ca2f58e9ba6c6b034fd531abe22ef77cc
|
|
| MD5 |
0d369aa28a2ae2668384a3384a43ca5e
|
|
| BLAKE2b-256 |
6d62eed28eab67f939f4b9383c47b1db11638ade6ac30785c15cb960de85ba43
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-macosx_13_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-macosx_13_0_x86_64.whl -
Subject digest:
7e2186d2c90488c1e11895343941f35ca2f58e9ba6c6b034fd531abe22ef77cc - Sigstore transparency entry: 671485344
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp314-cp314-macosx_13_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp314-cp314-macosx_13_0_arm64.whl
- Upload date:
- Size: 484.7 kB
- Tags: CPython 3.14, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc151cf6a585d9ebe711da32b23683fcff40f78db8c8587c7f4b209ef4658809
|
|
| MD5 |
28082c6d26069016ce7242cfd026df92
|
|
| BLAKE2b-256 |
5e7f7eb238bdcd06182b5f427afd305cf413b7cf4ea71047308bbf35912cf923
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp314-cp314-macosx_13_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp314-cp314-macosx_13_0_arm64.whl -
Subject digest:
cc151cf6a585d9ebe711da32b23683fcff40f78db8c8587c7f4b209ef4658809 - Sigstore transparency entry: 671484730
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 642.7 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64ee189ea857f2126c5e42073cfa9b03e9f4cbaf073edbedb575059074841aa0
|
|
| MD5 |
4473dbf3a360e6259e83d62a1d93a732
|
|
| BLAKE2b-256 |
348532ba71b06f3cf5f9856ae95b3d6463b971742453631a5ae2c5be338ea377
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-win_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-win_arm64.whl -
Subject digest:
64ee189ea857f2126c5e42073cfa9b03e9f4cbaf073edbedb575059074841aa0 - Sigstore transparency entry: 671485918
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 491.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bcba63ad3ea8926fb0c71bb5044e33d405bb9395f5b5444393cd5f28f0bf6d3
|
|
| MD5 |
73a44e3c2557a580186f1f8ca396a0e9
|
|
| BLAKE2b-256 |
08246ea87fe682e115ffd296e91eb5c5a266349d1ee8414ce8ece3f99ec1ac84
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-win_amd64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-win_amd64.whl -
Subject digest:
0bcba63ad3ea8926fb0c71bb5044e33d405bb9395f5b5444393cd5f28f0bf6d3 - Sigstore transparency entry: 671484636
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-win32.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-win32.whl
- Upload date:
- Size: 433.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67c5c73d7ebcf3f0e0a3b528b41bd8c6c04900f1598aebf05bbdf15a06cf5f9a
|
|
| MD5 |
59f62ec4864e30eb0b26a21a56d62a25
|
|
| BLAKE2b-256 |
f17f858453ef689f6b9895cd02b466836a9d1a6e4ba535d1a275b01bf73baa1d
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-win32.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-win32.whl -
Subject digest:
67c5c73d7ebcf3f0e0a3b528b41bd8c6c04900f1598aebf05bbdf15a06cf5f9a - Sigstore transparency entry: 671485476
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 591.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a52cb204e49d20cdbb66faf394d57f476e96c39c23a328442ab0194fc6bd1a2b
|
|
| MD5 |
8bac6212978a1c2313ac3a3b8a476c9e
|
|
| BLAKE2b-256 |
f08c23075e589038284c9487f41cde531d35873f9da622fb4ac7d1d97bd9086e
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a52cb204e49d20cdbb66faf394d57f476e96c39c23a328442ab0194fc6bd1a2b - Sigstore transparency entry: 671485866
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 572.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b1458d9ca588124cd61aa1bf5388a216e1247e7d474f8e5e1530498044f5c87
|
|
| MD5 |
843d0c9826bee26f8eafc4388e30eac0
|
|
| BLAKE2b-256 |
7171f927ddc7aef1b8d7ccc8a649c335d311f29f3dea658209e30e37720e4891
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
0b1458d9ca588124cd61aa1bf5388a216e1247e7d474f8e5e1530498044f5c87 - Sigstore transparency entry: 671486498
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-macosx_15_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-macosx_15_0_x86_64.whl
- Upload date:
- Size: 510.4 kB
- Tags: CPython 3.13, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1920b15dc9b1bdfeca5aa2c60900373c6f27cd1056d53cd299456ea5540a6fff
|
|
| MD5 |
3bf1e17c30156aeb837fa7e442bb86de
|
|
| BLAKE2b-256 |
97bf5fc32ded9279e69a87b88d7261e7e77e2e26325d4e27ca1303a3215e430a
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-macosx_15_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-macosx_15_0_x86_64.whl -
Subject digest:
1920b15dc9b1bdfeca5aa2c60900373c6f27cd1056d53cd299456ea5540a6fff - Sigstore transparency entry: 671485791
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-macosx_15_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-macosx_15_0_arm64.whl
- Upload date:
- Size: 483.0 kB
- Tags: CPython 3.13, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83292e23963aa1b219d5f64a65365b0880448a6a060276027b55270bc5b18c7e
|
|
| MD5 |
5eb422ecdd1ade2ab0a0e207d0a94d21
|
|
| BLAKE2b-256 |
6112cfdbb92bed24af6474970a75a26145c424f98cfbcc633fdd185985f0efe0
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-macosx_15_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-macosx_15_0_arm64.whl -
Subject digest:
83292e23963aa1b219d5f64a65365b0880448a6a060276027b55270bc5b18c7e - Sigstore transparency entry: 671483496
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-macosx_14_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-macosx_14_0_x86_64.whl
- Upload date:
- Size: 520.3 kB
- Tags: CPython 3.13, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28a46be978e53c772139d0f5c9ba69f53563fcdd4225407e4d34d51208b828f1
|
|
| MD5 |
9bd1a3400cf8a44b01f9b2a481c5b403
|
|
| BLAKE2b-256 |
75dd24ba65692dd58dca6ff178428551f4e9b776d1489a1251f5c8539e598baa
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-macosx_14_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-macosx_14_0_x86_64.whl -
Subject digest:
28a46be978e53c772139d0f5c9ba69f53563fcdd4225407e4d34d51208b828f1 - Sigstore transparency entry: 671484425
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-macosx_14_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-macosx_14_0_arm64.whl
- Upload date:
- Size: 487.0 kB
- Tags: CPython 3.13, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8314144eefeee7b88b742081c2038418f677e63901039ca9dbfbc0c5bb6d2911
|
|
| MD5 |
1a83e52639831b159eb2a0b18f6b37f6
|
|
| BLAKE2b-256 |
0d39da66e4ca9be0c51546efc6fb39cf1683c4be8245d8199cb54a9808e8d5fa
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-macosx_14_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-macosx_14_0_arm64.whl -
Subject digest:
8314144eefeee7b88b742081c2038418f677e63901039ca9dbfbc0c5bb6d2911 - Sigstore transparency entry: 671483569
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-macosx_13_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-macosx_13_0_x86_64.whl
- Upload date:
- Size: 518.8 kB
- Tags: CPython 3.13, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a21c2807bf4d5d00f206a4ecb3b043aad674e28c451b697b740280f608872078
|
|
| MD5 |
2a49e2b8a9d44290bbf6f3f5ed8dbda9
|
|
| BLAKE2b-256 |
ea87cf588255e5ada1dfb555cc96de35be78438bb0b6faba64df5fe91cecc224
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-macosx_13_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-macosx_13_0_x86_64.whl -
Subject digest:
a21c2807bf4d5d00f206a4ecb3b043aad674e28c451b697b740280f608872078 - Sigstore transparency entry: 671484491
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp313-cp313-macosx_13_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp313-cp313-macosx_13_0_arm64.whl
- Upload date:
- Size: 485.5 kB
- Tags: CPython 3.13, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f3cf610e857a7d6f02916cf2b7fc159a5429b8bcb23164500d46e5e233f2924
|
|
| MD5 |
a64840c6acd8bf15deb84191b6fd9e0c
|
|
| BLAKE2b-256 |
a5b9c441722196598fc3de0f654606ad9975a968c71dc27f516b5a4c9ebb94fd
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp313-cp313-macosx_13_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp313-cp313-macosx_13_0_arm64.whl -
Subject digest:
9f3cf610e857a7d6f02916cf2b7fc159a5429b8bcb23164500d46e5e233f2924 - Sigstore transparency entry: 671486245
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 642.7 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
558f144b26a9555ae4e9467cc3aa3299a8ce13217f328b21ae326ca0633be19b
|
|
| MD5 |
7118eeec514a0e5450ccfdb8dfb8b33e
|
|
| BLAKE2b-256 |
608dc1afd29fc2cb475fd4c634f3d3c8099c0efb662362c10b27a9eaf11c9357
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-win_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-win_arm64.whl -
Subject digest:
558f144b26a9555ae4e9467cc3aa3299a8ce13217f328b21ae326ca0633be19b - Sigstore transparency entry: 671484301
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 491.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
062313c309f93dfeb6966372f4c446580e98879133ec155522eea8aaf568a5cd
|
|
| MD5 |
fea48d7784e81b71ecae6279666d809d
|
|
| BLAKE2b-256 |
31e95dd951c35acaabfe87c67228b9af2cdcd7779d9167edbe6b9094b8a8e529
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-win_amd64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-win_amd64.whl -
Subject digest:
062313c309f93dfeb6966372f4c446580e98879133ec155522eea8aaf568a5cd - Sigstore transparency entry: 671483676
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-win32.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-win32.whl
- Upload date:
- Size: 433.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8424e63a9ec0fe5bde03d97876b2431f8a746af33eb475fa1ae39144bd05b2a
|
|
| MD5 |
e92436ceec397d3b4d7939da2c252ff5
|
|
| BLAKE2b-256 |
62cf7bdd7a1ae7828b613011da808eafec4da3132f43c3be6af5e0bd670ebe8b
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-win32.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-win32.whl -
Subject digest:
d8424e63a9ec0fe5bde03d97876b2431f8a746af33eb475fa1ae39144bd05b2a - Sigstore transparency entry: 671486357
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 591.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
809c5fa5d08279413b29c2e2c5c528e85cd94a0e0fd897db595a0c09eeee2782
|
|
| MD5 |
3119b2c8fd6bf23f8d3d64fd4a9b59d6
|
|
| BLAKE2b-256 |
0d1c8b1ccbeade96a21435d55b5185cd6d9b2ceab5a9af998a4d9099e0540759
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
809c5fa5d08279413b29c2e2c5c528e85cd94a0e0fd897db595a0c09eeee2782 - Sigstore transparency entry: 671484115
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 572.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b7a3b90f747130310d4b3b8e19ebb845d0d97c1deb63b36f76c7242dacbd736
|
|
| MD5 |
7f6a0631a7d4d9ac19116da67e79f2bf
|
|
| BLAKE2b-256 |
8a0a6add090c917ee39f6f0be753037cafceb3bad904b424efc155fb38082635
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
2b7a3b90f747130310d4b3b8e19ebb845d0d97c1deb63b36f76c7242dacbd736 - Sigstore transparency entry: 671484969
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-macosx_15_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-macosx_15_0_x86_64.whl
- Upload date:
- Size: 510.4 kB
- Tags: CPython 3.12, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a4e5785bc30d52ce655d805b07ad2d8a4905429a5f690ae9c2f1caa76665709
|
|
| MD5 |
713cbf3429b1260f1bdcbbfc745381da
|
|
| BLAKE2b-256 |
7f146bfc6838bb6cb561824ac03deeab2bd11d5d9a93505f536c8fa2f6bd46c4
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-macosx_15_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-macosx_15_0_x86_64.whl -
Subject digest:
5a4e5785bc30d52ce655d805b07ad2d8a4905429a5f690ae9c2f1caa76665709 - Sigstore transparency entry: 671485029
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-macosx_15_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-macosx_15_0_arm64.whl
- Upload date:
- Size: 482.9 kB
- Tags: CPython 3.12, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5320da07dc3b7ac7f407514f42ac17d67e771ac7c7562d449571185e6fb601b2
|
|
| MD5 |
3620ee36e2d18451a0a59a37f43d86bb
|
|
| BLAKE2b-256 |
f40a0747c92dbebe2c09a26bd7386d372b5c5a9926236b4f3d69bb8f15db05cb
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-macosx_15_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-macosx_15_0_arm64.whl -
Subject digest:
5320da07dc3b7ac7f407514f42ac17d67e771ac7c7562d449571185e6fb601b2 - Sigstore transparency entry: 671485971
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-macosx_14_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-macosx_14_0_x86_64.whl
- Upload date:
- Size: 520.2 kB
- Tags: CPython 3.12, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f7158afc9825ac2654c6561aea94a1f7edb5b5b88e6e3639bb80bb817d102ac
|
|
| MD5 |
57236f16ea219bfa07ec1c94393d8299
|
|
| BLAKE2b-256 |
d9691db6742943c0ac254bfb7d8a37a5d3f73f016a65cfa1f84fe3a0451820f6
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-macosx_14_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-macosx_14_0_x86_64.whl -
Subject digest:
9f7158afc9825ac2654c6561aea94a1f7edb5b5b88e6e3639bb80bb817d102ac - Sigstore transparency entry: 671484023
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-macosx_14_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-macosx_14_0_arm64.whl
- Upload date:
- Size: 487.0 kB
- Tags: CPython 3.12, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3ac51b28cbf25c100dfd8849212d878d7005d1d4a7e129a10789043c56b6021
|
|
| MD5 |
c77294001fc38bf7accb71aef6cde963
|
|
| BLAKE2b-256 |
df37b2e367987371514253ec9e514637f457deaacb7acc1c900814f3a6421e0f
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-macosx_14_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-macosx_14_0_arm64.whl -
Subject digest:
a3ac51b28cbf25c100dfd8849212d878d7005d1d4a7e129a10789043c56b6021 - Sigstore transparency entry: 671485265
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-macosx_13_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-macosx_13_0_x86_64.whl
- Upload date:
- Size: 518.8 kB
- Tags: CPython 3.12, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a77892c524b8bdf3d47d7cad1cc2ac3a0108bdd65007ef4c02888fa46baf8ee
|
|
| MD5 |
8abe26bba0fbdcdf9942abb379d13891
|
|
| BLAKE2b-256 |
b99aca3a993bdb5dc6d5b2616b9657b2872a83d1827f8bd3ab50cd629eb751c7
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-macosx_13_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-macosx_13_0_x86_64.whl -
Subject digest:
9a77892c524b8bdf3d47d7cad1cc2ac3a0108bdd65007ef4c02888fa46baf8ee - Sigstore transparency entry: 671486129
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp312-cp312-macosx_13_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp312-cp312-macosx_13_0_arm64.whl
- Upload date:
- Size: 485.6 kB
- Tags: CPython 3.12, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b30f09b4d63249c72e65ccae4cbf6b331b48c22fc7cb439f1d85f347b9d07ceb
|
|
| MD5 |
71fb372decc249ef72c1bbf7990cbb19
|
|
| BLAKE2b-256 |
672073b487538e9107c2fd96aed737e3f3890dfce3e292622e4ffb2f9c810ee5
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp312-cp312-macosx_13_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp312-cp312-macosx_13_0_arm64.whl -
Subject digest:
b30f09b4d63249c72e65ccae4cbf6b331b48c22fc7cb439f1d85f347b9d07ceb - Sigstore transparency entry: 671484782
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 642.2 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
913864f97de4151eaa8bb7746ca230fd193656501e07fb658ce2cd46d4f6efcc
|
|
| MD5 |
13f0c2878abefafd42145fb03c1c8bd1
|
|
| BLAKE2b-256 |
56be4315c3b38f42f9a2888fa76260545c98547502f1c35aa63a672d39011b2e
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-win_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-win_arm64.whl -
Subject digest:
913864f97de4151eaa8bb7746ca230fd193656501e07fb658ce2cd46d4f6efcc - Sigstore transparency entry: 671486072
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 491.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5f856ff5036a8f22b3bad57f376d4e3b97b59b64f311bdb1f83c8dabded2492
|
|
| MD5 |
2457066a79e828ffa2192d18c63633ad
|
|
| BLAKE2b-256 |
49e5f83053a36cfc4762d843748e4f7a9c1141937dcf74cd6fc3f4598292dda3
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-win_amd64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-win_amd64.whl -
Subject digest:
f5f856ff5036a8f22b3bad57f376d4e3b97b59b64f311bdb1f83c8dabded2492 - Sigstore transparency entry: 671483153
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-win32.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-win32.whl
- Upload date:
- Size: 434.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54f51762b51dc238eceddf49b56cc2b64594fe72d9328c1c39d615aa990e1f87
|
|
| MD5 |
2c641f37ac2e65a3d3d325d1a0d3b5af
|
|
| BLAKE2b-256 |
94195981fb798bb8d08933b815b1fd9e55d179c380b9d8c21a49197b9b7c5967
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-win32.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-win32.whl -
Subject digest:
54f51762b51dc238eceddf49b56cc2b64594fe72d9328c1c39d615aa990e1f87 - Sigstore transparency entry: 671486193
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 590.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03156291269f145eccddff63118f2df02d395792f51fc039f09955818943815a
|
|
| MD5 |
bdd122aff4b0271cfe6ab52d16e6bbaa
|
|
| BLAKE2b-256 |
91214566fc344c21cf3c49082d13ddab785994b5e3b8b7fd4631242538f698a2
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
03156291269f145eccddff63118f2df02d395792f51fc039f09955818943815a - Sigstore transparency entry: 671485413
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 573.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18a5610b26742b90cb1d64ead2b16fe0e3bd7e67add03fd3779cd1b85e401661
|
|
| MD5 |
693db7519c88fc445cc914589348e1f4
|
|
| BLAKE2b-256 |
0ef26e470338271e164dd3c5e508876f99aec3ed23bf419c7d54a5672fd5b05f
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
18a5610b26742b90cb1d64ead2b16fe0e3bd7e67add03fd3779cd1b85e401661 - Sigstore transparency entry: 671483938
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-macosx_15_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-macosx_15_0_x86_64.whl
- Upload date:
- Size: 508.8 kB
- Tags: CPython 3.11, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1617097d63620c2d46bdfc0e48f24f66cd341664fc75718636d234f67473fe7f
|
|
| MD5 |
363896e2e539aeb51fc8770ee82807e2
|
|
| BLAKE2b-256 |
bd435fb20d16664457f61670bdd95f39039d43ee8b7732511c688e2f322a4317
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-macosx_15_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-macosx_15_0_x86_64.whl -
Subject digest:
1617097d63620c2d46bdfc0e48f24f66cd341664fc75718636d234f67473fe7f - Sigstore transparency entry: 671483779
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-macosx_15_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-macosx_15_0_arm64.whl
- Upload date:
- Size: 482.8 kB
- Tags: CPython 3.11, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cb5acee61e35772503b8b1db3c592a46b8e6a9bc0ab54d7d6233654ea2bf93d
|
|
| MD5 |
fb98ea8b626692ad1c86804880d72c2e
|
|
| BLAKE2b-256 |
dfd2ccc07860e31ab81965c63f9ed4eb69ea0d3449a9b4e1610f71883694bbe8
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-macosx_15_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-macosx_15_0_arm64.whl -
Subject digest:
4cb5acee61e35772503b8b1db3c592a46b8e6a9bc0ab54d7d6233654ea2bf93d - Sigstore transparency entry: 671486433
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-macosx_14_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-macosx_14_0_x86_64.whl
- Upload date:
- Size: 517.1 kB
- Tags: CPython 3.11, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50c7205182ad66c23c07abe8072f720ca2f7d595b61e28fd9b63623614f9afd6
|
|
| MD5 |
511c55a8521a8b7d624e727e91d4b2bf
|
|
| BLAKE2b-256 |
a2f6529c44f607c47f96cfa29c1fe3a690fe75b2fdb48e9b0d6b54e5f0a75e59
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-macosx_14_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-macosx_14_0_x86_64.whl -
Subject digest:
50c7205182ad66c23c07abe8072f720ca2f7d595b61e28fd9b63623614f9afd6 - Sigstore transparency entry: 671483740
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-macosx_14_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 485.4 kB
- Tags: CPython 3.11, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac1cb2526cc88f050a0661fc7245ad009ee454bddc541b2e653f1d007585000d
|
|
| MD5 |
8d101dbf9b5de227fb1d07a0a74881c5
|
|
| BLAKE2b-256 |
f36ac6c9fdb00c98990e4f7a6cd650e209d7b5d2754ca0404b72c69ac9909a69
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-macosx_14_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-macosx_14_0_arm64.whl -
Subject digest:
ac1cb2526cc88f050a0661fc7245ad009ee454bddc541b2e653f1d007585000d - Sigstore transparency entry: 671484354
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-macosx_13_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-macosx_13_0_x86_64.whl
- Upload date:
- Size: 515.5 kB
- Tags: CPython 3.11, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa2ad5f6f48921ec137a7b7f1b1da903ddef8627a2dc30bc878a9a69d9925719
|
|
| MD5 |
633491ba3940d7b37e61c4a1d8ac5aad
|
|
| BLAKE2b-256 |
7888466026b43ff5c7d740f5ede090992ec63b60d1810ab14fe35dfc00677e0a
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-macosx_13_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-macosx_13_0_x86_64.whl -
Subject digest:
aa2ad5f6f48921ec137a7b7f1b1da903ddef8627a2dc30bc878a9a69d9925719 - Sigstore transparency entry: 671483350
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp311-cp311-macosx_13_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp311-cp311-macosx_13_0_arm64.whl
- Upload date:
- Size: 483.7 kB
- Tags: CPython 3.11, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
329efa209ea7baa44f0facf0402fa34e655dc97fdeb10d0b83fc06354f5575fd
|
|
| MD5 |
6f1fc7378ec61d1dd7e4fd5977375f01
|
|
| BLAKE2b-256 |
8d4d203a08dab1bdb5c83b46dd424c01a789ecb5a37dbc80f33d016bd116a9d7
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp311-cp311-macosx_13_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp311-cp311-macosx_13_0_arm64.whl -
Subject digest:
329efa209ea7baa44f0facf0402fa34e655dc97fdeb10d0b83fc06354f5575fd - Sigstore transparency entry: 671484914
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 490.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
462dfcf147d0f54d0c93a69c361225119a4987c3b0ecd77f0e21ad9ba8bf180e
|
|
| MD5 |
1a2a9c79fb8a66b29834fe1ca08346d3
|
|
| BLAKE2b-256 |
1b4ed381ebce2d14b381379485845f884d8c7b491196fed62c68932a4e5fef69
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-win_amd64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-win_amd64.whl -
Subject digest:
462dfcf147d0f54d0c93a69c361225119a4987c3b0ecd77f0e21ad9ba8bf180e - Sigstore transparency entry: 671483857
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-win32.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-win32.whl
- Upload date:
- Size: 432.8 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
420fe037ad77ab3d1a280c6823985b89160896f66ce601a3923d020690a1f9b4
|
|
| MD5 |
92afc8e1e32bc107928663abadb920e3
|
|
| BLAKE2b-256 |
f7d7ce78b34800b966fc7c4abf2f40e71ece39c1485b57a283bcffae054a5aa3
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-win32.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-win32.whl -
Subject digest:
420fe037ad77ab3d1a280c6823985b89160896f66ce601a3923d020690a1f9b4 - Sigstore transparency entry: 671484566
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 589.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a319dcb37b069d72d968862335197f460803b3a35f99445ea805f69fac58759
|
|
| MD5 |
820fecd7e90600eef986608697d83834
|
|
| BLAKE2b-256 |
65d34aad2f11e635709c326a1c34bff59c879dab5c2ff720dbcd275c61c3ea56
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
3a319dcb37b069d72d968862335197f460803b3a35f99445ea805f69fac58759 - Sigstore transparency entry: 671484851
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 572.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8beddf48857fd3767c553f0be7414a7a483f9b6374c91c02474a616fc7f5c5b3
|
|
| MD5 |
d72c0b0daeee31e36637f4a0d495a399
|
|
| BLAKE2b-256 |
2834e9a9fa5fd3b309c76262fd8642346b62235f7a9b7590563403ef427a366b
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
8beddf48857fd3767c553f0be7414a7a483f9b6374c91c02474a616fc7f5c5b3 - Sigstore transparency entry: 671483014
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-macosx_15_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-macosx_15_0_x86_64.whl
- Upload date:
- Size: 507.8 kB
- Tags: CPython 3.10, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f886c88d56233483c5fd5ed1234e7e72389b8331250100983443fa30855deb63
|
|
| MD5 |
1c0d3a5fc8450c7e28b122d3008c9ad4
|
|
| BLAKE2b-256 |
61c32199a9edefa1ffea59e5e54ebca34a126e0a2c5b4b2c73db9c5b97b9895d
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-macosx_15_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-macosx_15_0_x86_64.whl -
Subject digest:
f886c88d56233483c5fd5ed1234e7e72389b8331250100983443fa30855deb63 - Sigstore transparency entry: 671483277
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-macosx_15_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-macosx_15_0_arm64.whl
- Upload date:
- Size: 481.7 kB
- Tags: CPython 3.10, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39a7013477c8778b1ddcc0d43eff0ee4a0f66b76c9db21f9e7b7d1f74852633f
|
|
| MD5 |
446700b843ea545a5b62983a188e246b
|
|
| BLAKE2b-256 |
2136c7d3c8dd7578badb53b929f5c8cc78bbbec23163029a15fdce2dfabf78f4
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-macosx_15_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-macosx_15_0_arm64.whl -
Subject digest:
39a7013477c8778b1ddcc0d43eff0ee4a0f66b76c9db21f9e7b7d1f74852633f - Sigstore transparency entry: 671484182
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-macosx_14_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-macosx_14_0_x86_64.whl
- Upload date:
- Size: 515.6 kB
- Tags: CPython 3.10, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
032160ad8c05739370813bcb15099854cd50faa933e0fe9607a2380659c750df
|
|
| MD5 |
cadb4e6a40deef824ee0dac6296d6332
|
|
| BLAKE2b-256 |
55d38d11005db3000128055f6d3868a3216dd639721040eb988b3eccce852bc0
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-macosx_14_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-macosx_14_0_x86_64.whl -
Subject digest:
032160ad8c05739370813bcb15099854cd50faa933e0fe9607a2380659c750df - Sigstore transparency entry: 671485734
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-macosx_14_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-macosx_14_0_arm64.whl
- Upload date:
- Size: 484.1 kB
- Tags: CPython 3.10, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9aa02dc1345f0889c6ce1365d5f93d5b161b512f4c6df3cfadf3298493fb678
|
|
| MD5 |
a648f40e6a6826c3b886cdc512b0814e
|
|
| BLAKE2b-256 |
70005303bb660b6f75a71f75dc818a35082c30508d4dd5477891f13e831f39e8
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-macosx_14_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-macosx_14_0_arm64.whl -
Subject digest:
a9aa02dc1345f0889c6ce1365d5f93d5b161b512f4c6df3cfadf3298493fb678 - Sigstore transparency entry: 671485125
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-macosx_13_0_x86_64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-macosx_13_0_x86_64.whl
- Upload date:
- Size: 514.1 kB
- Tags: CPython 3.10, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a486dc10bb07f3c34b9908541368e21ab6d77972569427200db077126668fbf3
|
|
| MD5 |
c3316bc4db89c91390beec55a345ada4
|
|
| BLAKE2b-256 |
7f5d25afc138821a1958940ee4a9bc83a87b59a6dbedd7ef0db4ee04b572a3b0
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-macosx_13_0_x86_64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-macosx_13_0_x86_64.whl -
Subject digest:
a486dc10bb07f3c34b9908541368e21ab6d77972569427200db077126668fbf3 - Sigstore transparency entry: 671484228
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file google_re2-1.1.20251105-1-cp310-cp310-macosx_13_0_arm64.whl.
File metadata
- Download URL: google_re2-1.1.20251105-1-cp310-cp310-macosx_13_0_arm64.whl
- Upload date:
- Size: 483.1 kB
- Tags: CPython 3.10, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88bd426c1904f3562049bf766301bbc4f7a4bcb8f61e92f8cc833faac1cf2a92
|
|
| MD5 |
e4bd93698934d8e6a6085d895639fde6
|
|
| BLAKE2b-256 |
23fb36548d5d791d2d750dc6fc2ab87fbe50f0bcc054673e1cf64928908892a3
|
Provenance
The following attestation bundles were made for google_re2-1.1.20251105-1-cp310-cp310-macosx_13_0_arm64.whl:
Publisher:
python.yml on google/re2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_re2-1.1.20251105-1-cp310-cp310-macosx_13_0_arm64.whl -
Subject digest:
88bd426c1904f3562049bf766301bbc4f7a4bcb8f61e92f8cc833faac1cf2a92 - Sigstore transparency entry: 671486303
- Sigstore integration time:
-
Permalink:
google/re2@927f5d53caf8111721e734cf24724686bb745f55 -
Branch / Tag:
refs/tags/2025-11-05 - Owner: https://github.com/google
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@927f5d53caf8111721e734cf24724686bb745f55 -
Trigger Event:
workflow_dispatch
-
Statement type:
