Commit cd81430
authored
fix: use correct Python version in release workflow (#67)
## Problem
The release workflow was using `${{ matrix.python-version }}` but
there's no matrix in this job. `setup-uv` fell back to the latest Python
(3.14), which caused `pydantic-core` to fail building from source — pyo3
0.24.1 only supports up to Python 3.13.
The `PYTHON_VERSION: "3.10"` env var was already defined but never
referenced.
## Fix
- `python-version: ${{ matrix.python-version }}` → `${{
env.PYTHON_VERSION }}`
- Remove `make install-dependencies` — not needed in the release job
(only `uv build` + publish)
## Next step
After merging, delete and re-create the `0.0.42` GitHub release to
re-trigger this workflow.1 parent 06929bc commit cd81430
1 file changed
+1
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | 25 | | |
29 | 26 | | |
30 | 27 | | |
| |||
0 commit comments