Skip to content

Commit d772063

Browse files
authored
Merge pull request plone#1398 from plone/install-wheel
Add wheel to requirements
2 parents f2dfc16 + 64b8ee5 commit d772063

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/build_deploy.yml

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

1919
- name: Install dependencies
2020
run: |
21-
python -m pip install --upgrade pip
21+
pip install -q -r requirements-initial.txt
2222
pip install -q -r requirements.txt
2323
pip freeze
2424

.github/workflows/test.yml

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

1919
- name: Install dependencies
2020
run: |
21-
python -m pip install --upgrade pip
21+
pip install -q -r requirements-initial.txt
2222
pip install -q -r requirements.txt
2323
sudo snap install --edge vale
2424

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ distclean: ## Clean docs build directory and Python virtual environment
3636

3737
bin/python:
3838
python3 -m venv . || virtualenv --clear --python=python3 .
39-
bin/python -m pip install --upgrade pip
39+
bin/pip install -r requirements-initial.txt
4040
bin/pip install -r requirements.txt
4141

4242
docs/plone.api:
@@ -226,6 +226,7 @@ livehtml: deps ## Rebuild Sphinx documentation on changes, with live-reload in
226226

227227
.PHONY: netlify
228228
netlify:
229+
pip install -r requirements-initial.txt
229230
pip install -r requirements.txt
230231
pip install -r requirements-netlify.txt
231232
git submodule init; \

requirements-initial.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# From https://dist.plone.org/release/6-latest/constraints.txt
2+
pip==22.3.1
3+
setuptools==65.5.1
4+
wheel==0.38.4

0 commit comments

Comments
 (0)