Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/reusable_test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
git submodule init
git submodule update
pip uninstall ${REPO_NAME} -y || true
if test -f ${REPO_NAME}/requirements-build.txt; then pip install -r ${REPO_NAME}/requirements-build.txt; fi
pip install --no-build-isolation -e .[dev]

- run: make lint
Expand Down
5 changes: 5 additions & 0 deletions wiki/Installation-Instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ git submodule init
git submodule update
```

For Animate only, we require one additional step before installation:
```
python3 -m pip install -r animate/build-requirements.txt
```

The package can be [installed using pip](https://pip.pypa.io/en/stable/topics/local-project-installs/):
```
python3 -m pip install --no-build-isolation -e <PACKAGE>
Expand Down
Loading