-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
5 deletions.
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 |
---|---|---|
|
@@ -15,11 +15,17 @@ conda install -q ciocheck -c spyder-ide --no-update-deps | |
|
||
# Install dependencies | ||
if [ "$CIRCLE_NODE_INDEX" = "0" ]; then | ||
pip install -q markdown pygments ipython nbformat nbconvert jupyter_client pyqt5 matplotlib | ||
# python3.6, pweave from git/master | ||
pip install -q matplotlib | ||
pip install git+ssh://[email protected]/mpastell/Pweave.git | ||
else | ||
elif [ "$CIRCLE_NODE_INDEX" = "1" ]; then | ||
# python3.5, latest pweave 0.30 | ||
conda install -q matplotlib pandoc | ||
pip install -q pweave | ||
else | ||
# python2.7, legacy pweave 0.25 :( | ||
conda install -q matplotlib | ||
pip install -q pweave==0.25 | ||
fi | ||
|
||
# Bring Spyder dependencies (install/uninstall Spyder) | ||
|
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