Skip to content

Commit

Permalink
Testing: Use the Spyder 3.x branch on CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Jun 22, 2017
1 parent 7b1d6f1 commit 6513d24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ dependencies:
source activate test &&
conda install -q ciocheck -c spyder-ide --no-update-deps &&
if [ "$CIRCLE_NODE_INDEX" = "2" ]; then pip install -q pyqt5 spyder notebook; else conda install -q spyder notebook; fi &&
python setup.py install > /dev/null;
if [ "$CIRCLE_NODE_INDEX" = "2" ]; then pip uninstall -q -y spyder; else conda remove -q -y spyder; fi &&
mkdir spyder-source && cd spyder-source &&
wget -q https://github.com/spyder-ide/spyder/archive/3.x.zip && unzip -q 3.x.zip &&
cd spyder-3.x && python setup.py install > /dev/null &&
cd ../../ && pip install -q . > /dev/null;
- DISPLAY=:99 /usr/bin/matchbox-window-manager:
background: true
- sleep 5
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_version(module='spyder_notebook'):
return version


REQUIREMENTS = ['spyder>=3.2', 'notebook>=4.3']
REQUIREMENTS = ['spyder>=3.2.0.dev0', 'notebook>=4.3']

setup(
name='spyder-notebook',
Expand Down

0 comments on commit 6513d24

Please sign in to comment.