Skip to content

Commit 551edb0

Browse files
committed
try --only-binary
1 parent c9d685c commit 551edb0

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/reusable-docs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,6 @@ jobs:
111111
run: ./configure --with-pydebug
112112
- name: 'Build CPython'
113113
run: make -j4
114-
- name: 'Remove PyStemmer from requirements.txt'
115-
run: sed -i '/PyStemmer.*/d' Doc/requirements.txt
116114
- name: 'Install build dependencies'
117115
run: make -C Doc/ PYTHON=../python venv
118116
# Use "xvfb-run" since some doctest tests open GUI windows

Doc/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,11 @@ venv:
173173
echo "Creating venv in $(VENVDIR)"; \
174174
if $(UV) --version >/dev/null 2>&1; then \
175175
$(UV) venv $(VENVDIR); \
176-
VIRTUAL_ENV=$(VENVDIR) $(UV) pip install -r $(REQUIREMENTS); \
176+
VIRTUAL_ENV=$(VENVDIR) $(UV) pip install -r $(REQUIREMENTS) --only-binary PyStemmer; \
177177
else \
178178
$(PYTHON) -m venv $(VENVDIR); \
179179
$(VENVDIR)/bin/python3 -m pip install --upgrade pip; \
180-
$(VENVDIR)/bin/python3 -m pip install -r $(REQUIREMENTS); \
180+
$(VENVDIR)/bin/python3 -m pip install -r $(REQUIREMENTS) --only-binary PyStemmer; \
181181
fi; \
182182
echo "The venv has been created in the $(VENVDIR) directory"; \
183183
fi

0 commit comments

Comments
 (0)