Skip to content

Commit 319c651

Browse files
Merge pull request #1289 from VWS-Python/install-wheel
Install wheel as part of CI setup
2 parents 10e394a + 738b18a commit 319c651

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: "Install dependencies"
3333
run: |
34-
python -m pip install --upgrade pip
34+
python -m pip install --upgrade pip setuptools wheel
3535
# We use '--ignore-installed' to avoid GitHub's cache which can cause
3636
# issues - we have seen packages from this cache be cause trouble with
3737
# pip-extra-reqs.

.github/workflows/windows-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: "Install dependencies"
3333
run: |
34-
python -m pip install --upgrade pip
34+
python -m pip install --upgrade pip setuptools wheel
3535
# We use '--ignore-installed' to avoid GitHub's cache which can cause
3636
# issues - we have seen packages from this cache be cause trouble with
3737
# pip-extra-reqs.

0 commit comments

Comments
 (0)