This is an automated email from the ASF dual-hosted git repository.
yzheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 259413cdd [chore]: Match openapi-generator-cli version in build system
to dependency (#3266)
259413cdd is described below
commit 259413cdd9326a0bce9d886f987b499d01f7b122
Author: Yong Zheng <[email protected]>
AuthorDate: Thu Dec 18 19:54:25 2025 -0600
[chore]: Match openapi-generator-cli version in build system to dependency
(#3266)
* Fix openapi-generator-cli version in build system
* Fix openapi-generator-cli version in build system
---
client/python/pyproject.toml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/client/python/pyproject.toml b/client/python/pyproject.toml
index 8188dac6e..ac71640e9 100644
--- a/client/python/pyproject.toml
+++ b/client/python/pyproject.toml
@@ -64,7 +64,8 @@ types-python-dateutil = ">= 2.8.19.14"
mypy = ">=1.19, <=1.19.1"
pyiceberg = "==0.10.0"
pre-commit = "==4.5.1"
-openapi-generator-cli = "==7.17.0"
+# 7.12.0 is the latest version to use due to OpenAPI spec version we are using
+openapi-generator-cli = "==7.12.0"
pip-licenses-cli = "==3.0.1"
[tool.pip-licenses]
@@ -72,6 +73,7 @@ partial-match = true
allow-only = "Apache;BSD License;BSD-3-Clause;ISC;MIT;Mozilla Public
License;PSF-2.0;Python Software Foundation License;The Unlicense"
[build-system]
+# 7.12.0 is the latest version to use due to OpenAPI spec version we are using
requires = ["poetry-core==2.2.1", "openapi-generator-cli==7.12.0"]
build-backend = "poetry.core.masonry.api"