diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 9402942b..bab6442f 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -22,6 +22,7 @@ jobs: python -m pip install --upgrade pip setuptools wheel python -m pip install . pip install git+https://github.com/rafelafrance/common_utils.git@main#egg=common_utils + pip install git+https://github.com/rafelafrance/spell-well.git@main#egg=spell-well pip install git+https://github.com/rafelafrance/traiter.git@master#egg=traiter python -m spacy download en_core_web_md - name: Test with unittest diff --git a/Makefile b/Makefile index a9ad1c72..c14061f4 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,8 @@ install: venv source $(VENV)/bin/activate $(PIP_INSTALL) -U pip setuptools wheel $(PIP_INSTALL) git+https://github.com/rafelafrance/common_utils.git@main#egg=common_utils - $(PIP_INSTALL) git+https://github.com/rafelafrance/traiter.git@master#egg=traiter $(PIP_INSTALL) git+https://github.com/rafelafrance/spell-well.git@main#egg=spell-well + $(PIP_INSTALL) git+https://github.com/rafelafrance/traiter.git@master#egg=traiter $(PIP_INSTALL) . $(SPACY_MODEL) @@ -23,8 +23,8 @@ dev: venv source $(VENV)/bin/activate $(PIP_INSTALL) -U pip setuptools wheel $(PIP_INSTALL) -e ../../misc/common_utils - $(PIP_INSTALL) -e ../../traiter/traiter $(PIP_INSTALL) -e ../../misc/spell-well + $(PIP_INSTALL) -e ../../traiter/traiter $(PIP_INSTALL) -e .[dev] $(SPACY_MODEL) pre-commit install