Skip to content

Commit

Permalink
Merge pull request #3018 from ccordoba12/fix-jedi-in-tests
Browse files Browse the repository at this point in the history
PR: Remove Jedi special code in tests and other minor fixes
  • Loading branch information
ccordoba12 committed Feb 29, 2016
2 parents a572ba5 + ba2624e commit f9cc56b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 22 deletions.
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

environment:
matrix:
#- PYTHON: "C:\\Python27_64"
# PYTHON_VERSION: "2.7"
# PYTHON_ARCH: "64"
# USE_QT_API: "PyQt4"
- PYTHON: "C:\\Python27_64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
USE_QT_API: "PyQt4"

- PYTHON: "C:\\Python35_64"
PYTHON_VERSION: "3.5"
Expand Down
2 changes: 1 addition & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ requirements:
- pyqt
- rope
- pyflakes
- jedi 0.8* [py27 or py34]
- jedi
- qtconsole
- nbconvert
- pygments
Expand Down
6 changes: 0 additions & 6 deletions continuous_integration/appveyor/run_test.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@ cd C:\projects\tmp
REM Install the package we created
conda install -q -y --use-local spyder==3.0.0b2

REM Install missing deps
if %PYTHON_VERSION%==3.5 (
pip install jedi
pip install pylint
)

REM Install extra packages
conda install -q -y %EXTRA_PACKAGES%

Expand Down
8 changes: 4 additions & 4 deletions continuous_integration/conda-recipes/qtconsole/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package:
name: qtconsole
version: 4.1.1
version: 4.2.0

build:
number: 99

source:
fn: qtconsole-4.1.1.tar.gz
url: https://pypi.python.org/packages/source/q/qtconsole/qtconsole-4.1.1.tar.gz
md5: 12f474ab467d2945249d149d2d32f208
fn: qtconsole-4.2.0.tar.gz
url: https://pypi.python.org/packages/source/q/qtconsole/qtconsole-4.2.0.tar.gz
md5: d08f3f75d2fd7cfa2c863dac0c045d87

requirements:
build:
Expand Down
4 changes: 2 additions & 2 deletions continuous_integration/conda-recipes/spyder/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ requirements:
- {% if environ.get('USE_QT_API') == 'PyQt4' %} pyqt {% else %} pyqt5 {% endif %}
- rope
- pyflakes
- jedi [py27 or py34]
- jedi
- qtconsole
- nbconvert
- pygments
- sphinx
- pep8
- psutil
- pylint [not win]
- pylint
- qtawesome
- python.app [osx]

Expand Down
5 changes: 0 additions & 5 deletions continuous_integration/travis/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ if [ "$USE_CONDA" = true ] ; then

# Install extra packages
conda install -q $EXTRA_PACKAGES

# Jedi is not available in conda
if [ "$TRAVIS_PYTHON_VERSION" = "3.5" ]; then
pip install jedi
fi
else
cd $FULL_SPYDER_CLONE
pip install dist/spyder-*.whl
Expand Down

0 comments on commit f9cc56b

Please sign in to comment.