Skip to content

Commit cf7516d

Browse files
ci: Remove Python 3.8 fallback to pip install (#2619)
* Use uv for all installations in CI, as the Python 3.8 fall back to 'pip install' was needed only for TensorFlow. - Amends PR #2609
1 parent d021d4c commit cf7516d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,10 @@ jobs:
4747
python-version: ${{ matrix.python-version }}
4848

4949
- name: Install dependencies
50-
if: matrix.python-version != '3.8'
5150
run: |
5251
python -m pip install uv
5352
uv pip install --system --upgrade ".[all,test]"
5453
55-
# c.f. https://github.com/astral-sh/uv/issues/2062
56-
- name: Install dependencies (Python 3.8)
57-
if: matrix.python-version == '3.8'
58-
run: |
59-
python -m pip install --upgrade pip
60-
python -m pip install --upgrade ".[all,test]"
61-
6254
- name: List installed Python packages
6355
run: python -m pip list
6456

0 commit comments

Comments
 (0)