Skip to content

Commit ee0be06

Browse files
committed
Bump python for pypi release wf
* old python didn't automatically normalize filename of uploaded artifact, the `-` is not allowed in name of artifact for `/legacy` pypi upload endpoint. Newer python does that automatically, let's update it in affected workflow.
1 parent e9b82d6 commit ee0be06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v6
1313
- name: Set up Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v6
1515
with:
16-
python-version: '3.8'
16+
python-version: '3.13'
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)