Skip to content

Commit 746bb67

Browse files
committed
Cleanup requirements install in CI
1 parent dc3a403 commit 746bb67

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
run: |
5353
python -m venv venv
5454
. venv/bin/activate
55-
python -m pip install -U pip setuptools wheel
55+
python -m pip install -U pip
5656
pip install -U -r requirements.txt -r requirements_test.txt
57-
pip install -e .
57+
pip install .
5858
- name: Generate pre-commit restore key
5959
id: generate-pre-commit-key
6060
run: >-
@@ -181,9 +181,9 @@ jobs:
181181
run: |
182182
python -m venv venv
183183
. venv/bin/activate
184-
python -m pip install -U pip setuptools wheel
184+
python -m pip install -U pip
185185
pip install -U -r requirements.txt -r requirements_test.txt
186-
pip install -e .
186+
pip install .
187187
- name: Run pytest
188188
run: |
189189
. venv/bin/activate

0 commit comments

Comments
 (0)