Skip to content

Commit 639cb66

Browse files
author
Roman
committed
fix uv version
1 parent 4a14322 commit 639cb66

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/flake8-and-mypy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ jobs:
4242
python -m venv venv
4343
source venv/bin/activate
4444
python -m pip install --upgrade pip
45-
python -m pip install uv
45+
# uv==0.8.6 is the last version that supports python 3.9
46+
python -m pip install uv==0.8.6
4647
python -m uv sync --extra dev --active
4748
4849
- name: Flake8

.github/workflows/unit-and-integration-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
python -m venv venv
4040
source venv/bin/activate
4141
python -m pip install --upgrade pip
42-
python -m pip install uv
42+
# uv==0.8.6 is the last version that supports python 3.9
43+
python -m pip install uv==0.8.6
4344
python -m uv sync --extra dev --active
4445
4546
- name: Unit tests

0 commit comments

Comments
 (0)