Skip to content

Commit

Permalink
Add spell-well to build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rafelafrance committed Apr 3, 2024
1 parent 4d48832 commit 8c5bf35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ 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)

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
Expand Down

0 comments on commit 8c5bf35

Please sign in to comment.