We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4deadd3 commit aa952afCopy full SHA for aa952af
.github/workflows/release.yml
@@ -18,9 +18,10 @@ jobs:
18
submodules: 'recursive'
19
20
- name: Set up Python
21
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
22
with:
23
python-version: '3.10'
24
+ cache: 'pip'
25
26
- name: Install uv
27
run: |
@@ -43,6 +44,11 @@ jobs:
43
44
id: get_version
45
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
46
47
+ - name: Verify Python version
48
+ run: |
49
+ python --version
50
+ python -c "import sys; assert sys.version_info >= (3, 10), f'Python {sys.version} is not >= 3.10'"
51
+
52
- name: Create Release Notes
53
id: release_notes
54
0 commit comments