-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dev optional dependency and add docs support to devcontainer
- Loading branch information
1 parent
6bb61c8
commit b9268d8
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
# update pip | ||
pip install --upgrade pip | ||
|
||
# install pre-release of quarto for docs | ||
wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.7.7/quarto-1.7.7-linux-amd64.deb -O quarto.deb && \ | ||
sudo dpkg -i quarto.deb && \ | ||
rm quarto.deb | ||
|
||
# install dev packages | ||
pip install -e ".[test,teachable,lmm,retrievechat,mathchat,blendsearch]" | ||
pip install -e ".[dev]" | ||
|
||
# install pre-commit hook if not installed already | ||
pre-commit install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters