From be30e4acd878ba608f29b1b7570ef36e0712a70b Mon Sep 17 00:00:00 2001 From: "Bel.walid" Date: Wed, 24 Sep 2025 23:13:17 +0200 Subject: [PATCH 1/3] update pyproject.toml to follow PEP 639 --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9c91a2fc8..f0ea7f413 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,13 +13,14 @@ # limitations under the License. [build-system] -requires = ["setuptools"] +requires = ["setuptools >= 77.0.3"] build-backend = "setuptools.build_meta" [project] name = "google-cloud-bigquery" authors = [{ name = "Google LLC", email = "googleapis-packages@google.com" }] -license = { text = "Apache 2.0" } +license = { text = "Apache-2.0" } +license-files = ["LICENSE"] requires-python = ">=3.9" description = "Google BigQuery API client library" readme = "README.rst" @@ -30,7 +31,6 @@ classifiers = [ # "Development Status :: 5 - Production/Stable" "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", - "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", From 898505d415aaf7e69f3d4003a53dc4aeafb383c5 Mon Sep 17 00:00:00 2001 From: Wabio Date: Thu, 2 Oct 2025 15:50:53 +0200 Subject: [PATCH 2/3] Update pyproject.toml PEP 639 Thanks for the feedback, I've removed the version number completely as requested. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f0ea7f413..31a9f2e3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ # limitations under the License. [build-system] -requires = ["setuptools >= 77.0.3"] +requires = ["setuptools"] build-backend = "setuptools.build_meta" [project] From 84f1cea1ab7f1b60c6b66109fe6eab526c8254f3 Mon Sep 17 00:00:00 2001 From: Chalmer Lowe Date: Mon, 13 Oct 2025 09:30:52 -0400 Subject: [PATCH 3/3] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 31a9f2e3e..1c6ec1f77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ build-backend = "setuptools.build_meta" [project] name = "google-cloud-bigquery" authors = [{ name = "Google LLC", email = "googleapis-packages@google.com" }] -license = { text = "Apache-2.0" } +license = "Apache-2.0" license-files = ["LICENSE"] requires-python = ">=3.9" description = "Google BigQuery API client library"