Skip to content

Commit f312956

Browse files
geruhKristofer Gaudel
authored andcommitted
fix: python version in release docs workflow (apache#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
1 parent b590134 commit f312956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/python-release-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v6
3939
- uses: actions/setup-python@v6
4040
with:
41-
python-version: ${{ matrix.python }}
41+
python-version: 3.12
4242
- name: Install UV
4343
uses: astral-sh/setup-uv@v7
4444
- name: Build docs

0 commit comments

Comments
 (0)