Skip to content

Commit 81af4fd

Browse files
committed
uv is broken for 0.8 < python 3.10 until 0.8.8 (see https://github.com/astral-sh/uv/blob/main/CHANGELOG.md#088)
1 parent 11df0e8 commit 81af4fd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
python -m venv venv
4343
source venv/bin/activate
4444
python -m pip install --upgrade pip
45-
# uv==0.8.6 is the last version that supports python 3.9
46-
python -m pip install uv==0.8.6
45+
# needed for Python 3.9 compatibility
46+
python -m pip install uv>=0.8.8
4747
python -m uv sync --extra dev --active
4848
4949
- name: Flake8

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
python -m venv venv
4040
source venv/bin/activate
4141
python -m pip install --upgrade pip
42-
# uv==0.8.6 is the last version that supports python 3.9
43-
python -m pip install uv==0.8.6
42+
# needed for Python 3.9 compatibility
43+
python -m pip install uv>=0.8.8
4444
python -m uv sync --extra dev --active
4545
4646
- name: Unit tests

0 commit comments

Comments
 (0)