File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,6 @@ jobs:
111
111
run : ./configure --with-pydebug
112
112
- name : ' Build CPython'
113
113
run : make -j4
114
- - name : ' Remove PyStemmer from requirements.txt'
115
- run : sed -i '/PyStemmer.*/d' Doc/requirements.txt
116
114
- name : ' Install build dependencies'
117
115
run : make -C Doc/ PYTHON=../python venv
118
116
# Use "xvfb-run" since some doctest tests open GUI windows
Original file line number Diff line number Diff line change @@ -173,11 +173,11 @@ venv:
173
173
echo " Creating venv in $( VENVDIR) " ; \
174
174
if $( UV) --version > /dev/null 2>&1 ; then \
175
175
$(UV ) venv $(VENVDIR ) ; \
176
- VIRTUAL_ENV=$(VENVDIR ) $(UV ) pip install -r $(REQUIREMENTS ) ; \
176
+ VIRTUAL_ENV=$(VENVDIR ) $(UV ) pip install -r $(REQUIREMENTS ) --only-binary PyStemmer ; \
177
177
else \
178
178
$(PYTHON ) -m venv $(VENVDIR ) ; \
179
179
$(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 ; \
181
181
fi ; \
182
182
echo " The venv has been created in the $( VENVDIR) directory" ; \
183
183
fi
You can’t perform that action at this time.
0 commit comments