This is an automated email from the ASF dual-hosted git repository.
kevinjqliu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new 4173ef7a fix: python version in release docs workflow (#3102)
4173ef7a is described below
commit 4173ef7a727790d5e7e7342ab542b26b5269b8b4
Author: geruh <[email protected]>
AuthorDate: Wed Feb 25 21:06:53 2026 -0800
fix: python version in release docs workflow (#3102)
# Rationale for this change
This pr is a small change to correct the `python-release-docs.yaml`
python version to reference a python version. Today it uses an non
existing variable of ${{ matrix.python }.
This will evaluate to an empty sting and just use the runners system
python install which happens to work. So this change will hardcode to
use 3.12 to match `python-ci-docs.yml`.
Action warning
Link: https://github.com/apache/iceberg-python/actions/runs/22287174360
<img width="687" height="113" alt="image"
src="https://github.com/user-attachments/assets/f4e89403-20b1-4451-b220-3cfb7b84e394"
/>
## Are these changes tested?
No
## Are there any user-facing changes?
No
---
.github/workflows/python-release-docs.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/python-release-docs.yml
b/.github/workflows/python-release-docs.yml
index 43a19b40..de9db554 100644
--- a/.github/workflows/python-release-docs.yml
+++ b/.github/workflows/python-release-docs.yml
@@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
- python-version: ${{ matrix.python }}
+ python-version: 3.12
- name: Install UV
uses: astral-sh/setup-uv@v7
- name: Build docs