From cdc9fabc936edc089bcfd9e4c1a52c35a2e6bffb Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Mon, 17 Jul 2023 16:10:32 +0200 Subject: [PATCH] Update pex Makefile defaults - switch to python 3.8 - only install spacy-lookups-data for extra packages --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4de628663..c8f68be7f 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ SHELL := /bin/bash ifndef SPACY_EXTRAS -override SPACY_EXTRAS = spacy-lookups-data==1.0.2 jieba spacy-pkuseg==0.0.28 sudachipy sudachidict_core pymorphy2 +override SPACY_EXTRAS = spacy-lookups-data==1.0.3 endif ifndef PYVER -override PYVER = 3.6 +override PYVER = 3.8 endif VENV := ./env$(PYVER)