Skip to content

Commit f597345

Browse files
committed
.
1 parent a3dd721 commit f597345

File tree

3 files changed

+8
-140
lines changed

3 files changed

+8
-140
lines changed

.github/workflows/CI.yml

-138
This file was deleted.

.github/workflows/apply-pip-compile.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v4
11+
- run: |
12+
echo "python_version=$(python3 scripts/get_python_version.py)" >> "$GITHUB_OUTPUT"
13+
id: get-python-version
1114
- name: Set up Python
1215
uses: actions/setup-python@v5
1316
with:
14-
python-version-file: pyproject.toml
17+
python-version: ${{ steps.get-python-version.outputs.python_version }}
1518
- name: Install uv
1619
run: |
1720
pip3 install uv

.github/workflows/check-pip-compile.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v4
11+
- run: |
12+
echo "python_version=$(python3 scripts/get_python_version.py)" >> "$GITHUB_OUTPUT"
13+
id: get-python-version
1114
- name: Set up Python
1215
uses: actions/setup-python@v5
1316
with:
14-
python-version-file: pyproject.toml
17+
python-version: ${{ steps.get-python-version.outputs.python_version }}
1518
- name: Install uv
1619
run: |
1720
pip3 install uv

0 commit comments

Comments
 (0)