Skip to content

Commit 88296e5

Browse files
Build wheels for testing (#939)
This should fix this error: ``` ERROR: Could not build wheels for pydata-sphinx-theme, which is required to install pyproject.toml-based projects ``` See #934.
1 parent be192ad commit 88296e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/prerelease.yml

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

2828
- name: Install (prerelease) dependencies
2929
run: |
30-
python -m pip install --upgrade pip
30+
python -m pip install --upgrade pip wheel setuptools
3131
python -m pip install --upgrade --pre -e .[test]
3232
3333
- name: Build docs to store

.github/workflows/tests.yml

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

4848
- name: Install dependencies
4949
run: |
50-
python -m pip install --upgrade pip
50+
python -m pip install --upgrade pip wheel setuptools
5151
python -m pip install -e .[coverage]
5252
5353
- name: Build docs to store

0 commit comments

Comments
 (0)