We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c65199 commit b5d3c1cCopy full SHA for b5d3c1c
.github/workflows/build.yaml
@@ -11,7 +11,6 @@ jobs:
11
strategy:
12
matrix:
13
python-version:
14
- - "3.9"
15
- "3.10"
16
- "3.11"
17
steps:
@@ -22,7 +21,8 @@ jobs:
22
21
python-version: ${{ matrix.python-version }}
23
- name: Install dependencies
24
run: |
25
- python -m pip install -e '.[dev,test]'
+ python -m pip install --quiet --upgrade pip setuptools
+ python -m pip install --editable '.[dev,test]'
26
- name: Run linting
27
28
python -m ruff check -q --diff --output-format=full .
0 commit comments