Bump pydevd version to 1.3.3. (#794)

This commit is contained in:
Fabio Zadrozny 2018-09-18 17:11:07 -03:00 committed by Karthik Nadig
parent c60caca338
commit a8d4299fbf
2 changed files with 3 additions and 2 deletions

View file

@ -6,10 +6,12 @@ conda install --yes numpy ipython pytest cython psutil
if [ "$PYDEVD_PYTHON_VERSION" = "2.6" ]; then
conda install --yes pyqt=4
pip install pympler==0.5
# Django 1.7 does not support Python 2.7
else
# pytest-xdist not available for python 2.6
pip install pytest-xdist
pip install pympler
fi
if [ "$PYDEVD_PYTHON_VERSION" = "2.7" ]; then
@ -23,6 +25,5 @@ if [ "$PYDEVD_PYTHON_VERSION" = "3.5" ]; then
pip install "django>=1.7,<1.8"
fi
pip install Pympler
pip install untangle
pip install scapy==2.4.0

View file

@ -46,7 +46,7 @@ from pydevd_concurrency_analyser.pydevd_thread_wrappers import wrap_threads
from pydevd_file_utils import get_fullname, rPath, get_package_dir
import pydev_ipython # @UnusedImport
__version_info__ = (1, 2, 0)
__version_info__ = (1, 3, 3)
__version_info_str__ = []
for v in __version_info__:
__version_info_str__.append(str(v))