Skip to content

Commit a27d1fb

Browse files
committed
Update release workflow to use uv
1 parent 580b979 commit a27d1fb

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,20 @@ jobs:
6060
- name: Setup Python
6161
uses: actions/setup-python@v5
6262
with:
63-
python-version: "3.10"
63+
python-version: "3.13"
64+
65+
- name: Install uv
66+
run: pip install uv
67+
68+
- name: Create virtual environment
69+
run: |
70+
uv venv --python 3.13
71+
. .venv/bin/activate
72+
echo PATH=$PATH >> $GITHUB_ENV
6473
6574
- name: Install dependencies
6675
run: |
67-
python -m pip install --upgrade pip
68-
pip install -r requirements.txt
76+
uv sync
6977
7078
- name: Find current version
7179
id: find-current-vantage6-version

0 commit comments

Comments
 (0)