File tree 3 files changed +8
-140
lines changed
3 files changed +8
-140
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- uses : actions/checkout@v4
11
+ - run : |
12
+ echo "python_version=$(python3 scripts/get_python_version.py)" >> "$GITHUB_OUTPUT"
13
+ id: get-python-version
11
14
- name : Set up Python
12
15
uses : actions/setup-python@v5
13
16
with :
14
- python-version-file : pyproject.toml
17
+ python-version : ${{ steps.get-python-version.outputs.python_version }}
15
18
- name : Install uv
16
19
run : |
17
20
pip3 install uv
Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- uses : actions/checkout@v4
11
+ - run : |
12
+ echo "python_version=$(python3 scripts/get_python_version.py)" >> "$GITHUB_OUTPUT"
13
+ id: get-python-version
11
14
- name : Set up Python
12
15
uses : actions/setup-python@v5
13
16
with :
14
- python-version-file : pyproject.toml
17
+ python-version : ${{ steps.get-python-version.outputs.python_version }}
15
18
- name : Install uv
16
19
run : |
17
20
pip3 install uv
You can’t perform that action at this time.
0 commit comments