Skip to content
Merged

UV Fix #3011

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/flake8-and-mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
# uv==0.8.6 is the last version that supports python 3.9
python -m pip install uv==0.8.6
# needed for Python 3.9 compatibility
python -m pip install uv>=0.8.8
python -m uv sync --extra dev --active

- name: Flake8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-and-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
# uv==0.8.6 is the last version that supports python 3.9
python -m pip install uv==0.8.6
# needed for Python 3.9 compatibility
python -m pip install uv>=0.8.8
python -m uv sync --extra dev --active

- name: Unit tests
Expand Down
Loading