Skip to content

Commit 4d92395

Browse files
authored
ci: avoid broken pip versions (#37)
avoid broken pip versions due to pypa/pip#10851
1 parent 7481a23 commit 4d92395

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tests.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ jobs:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies
2828
run: |
29-
python -m pip install --upgrade pip
30-
pip install .
29+
python -m pip install --upgrade wheel
30+
python -m pip install --upgrade "pip!=22.0.1" "pip!=22.0.2" "pip!=22.0.0" setuptools
31+
python -m pip install .
3132
- name: Lint with flake8
3233
run: |
3334
pip install flake8

0 commit comments

Comments
 (0)