From 013d78c5be17e753a9d627c538a51ba7f9912b67 Mon Sep 17 00:00:00 2001 From: Honah J Date: Mon, 15 Sep 2025 14:17:34 -0500 Subject: [PATCH 1/2] Test CI --- .github/workflows/python-client.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-client.yml b/.github/workflows/python-client.yml index 54a8e715e8..8ee2d50110 100644 --- a/.github/workflows/python-client.yml +++ b/.github/workflows/python-client.yml @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - name: Checkout Polaris project @@ -74,6 +74,6 @@ jobs: run: | make client-integration-test - - name: Run Polaris Client help maual + - name: Run Polaris Client help manual run: | ./polaris --help From 7e9364d3ba9a34e0c50c579fb2df78a60e76a7df Mon Sep 17 00:00:00 2001 From: Honah J Date: Mon, 15 Sep 2025 14:34:27 -0500 Subject: [PATCH 2/2] Pin virtualenv version --- client/python/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/python/pyproject.toml b/client/python/pyproject.toml index bec608d584..7d4af8f1f4 100644 --- a/client/python/pyproject.toml +++ b/client/python/pyproject.toml @@ -62,6 +62,9 @@ mypy = ">=1.18, <=1.18.1" pyiceberg = "==0.10.0" pre-commit = "==4.3.0" openapi-generator-cli = "==7.11.0.post0" +# pin virtualenv version to prevent poetry from upgrading to an incompatible version +# see https://github.com/python-poetry/poetry/issues/10504#issuecomment-3176923981 +virtualenv = ">=20.26.6,<20.33.0" [build-system] requires = ["poetry-core>=2.0.0,<3.0.0", "openapi-generator-cli==7.11.0.post0"]