From 63a4bdc762cba7da803014a40d0d55df58adaf32 Mon Sep 17 00:00:00 2001 From: anish k Date: Fri, 24 Apr 2026 23:46:51 +0000 Subject: [PATCH] fix(google-crc32c): add explicit license declaration to pyproject.toml The `google-crc32c` package was missing a `license` field in the `[project]` section of `pyproject.toml` after being migrated from `setup.py`. Without this field, PyPI cannot display license metadata for the package, which breaks compliance checking workflows that validate open-source licenses during installation. Signed-off-by: anish k --- packages/google-crc32c/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/google-crc32c/pyproject.toml b/packages/google-crc32c/pyproject.toml index ddff644d32e6..f55230dcbc80 100644 --- a/packages/google-crc32c/pyproject.toml +++ b/packages/google-crc32c/pyproject.toml @@ -22,3 +22,4 @@ version = "1.8.0" description = "A python wrapper of the C library 'Google CRC32C'" readme = "README.md" requires-python = ">=3.8" +license = { text = "Apache 2.0" }