mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
Try to debug tmpdir problem
This commit is contained in:
parent
61a71d8bcc
commit
bff1640a75
9
Makefile
9
Makefile
|
@ -45,8 +45,13 @@ dist/pytest.pex : $(WHEELHOUSE)/pytest-*.whl
|
||||||
|
|
||||||
$(WHEELHOUSE)/spacy-$(PYVER)-$(version).stamp : $(VENV)/bin/pex setup.py spacy/*.py* spacy/*/*.py*
|
$(WHEELHOUSE)/spacy-$(PYVER)-$(version).stamp : $(VENV)/bin/pex setup.py spacy/*.py* spacy/*/*.py*
|
||||||
mkdir -p $(WHEELHOUSE)
|
mkdir -p $(WHEELHOUSE)
|
||||||
$(VENV)/bin/pip wheel . -w $(WHEELHOUSE)
|
tmp_dir = $(TMPDIR)
|
||||||
$(VENV)/bin/pip wheel $(SPACY_EXTRAS) -w $(WHEELHOUSE)
|
echo $(tmp_dir)
|
||||||
|
source $(VENV)/bin/activate
|
||||||
|
export TMPDIR=$(tmp_dir)
|
||||||
|
|
||||||
|
pip wheel . -w $(WHEELHOUSE)
|
||||||
|
pip wheel $(SPACY_EXTRAS) -w $(WHEELHOUSE)
|
||||||
|
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user