Skip to content

Commit b5d3c1c

Browse files
author
Rudy Puig
committed
chore: fix workflow installation (hmm)
1 parent 5c65199 commit b5d3c1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ jobs:
1111
strategy:
1212
matrix:
1313
python-version:
14-
- "3.9"
1514
- "3.10"
1615
- "3.11"
1716
steps:
@@ -22,7 +21,8 @@ jobs:
2221
python-version: ${{ matrix.python-version }}
2322
- name: Install dependencies
2423
run: |
25-
python -m pip install -e '.[dev,test]'
24+
python -m pip install --quiet --upgrade pip setuptools
25+
python -m pip install --editable '.[dev,test]'
2626
- name: Run linting
2727
run: |
2828
python -m ruff check -q --diff --output-format=full .

0 commit comments

Comments
 (0)