Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
3 changes: 3 additions & 0 deletions client/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down