From a8d4299fbfc484ac2ae9731f5775ff99e1e5c4dc Mon Sep 17 00:00:00 2001 From: Fabio Zadrozny Date: Tue, 18 Sep 2018 17:11:07 -0300 Subject: [PATCH] Bump pydevd version to 1.3.3. (#794) --- ptvsd/_vendored/pydevd/.travis_install_python_deps.sh | 3 ++- ptvsd/_vendored/pydevd/pydevd.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ptvsd/_vendored/pydevd/.travis_install_python_deps.sh b/ptvsd/_vendored/pydevd/.travis_install_python_deps.sh index 5cb03d58..258c931c 100644 --- a/ptvsd/_vendored/pydevd/.travis_install_python_deps.sh +++ b/ptvsd/_vendored/pydevd/.travis_install_python_deps.sh @@ -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 \ No newline at end of file diff --git a/ptvsd/_vendored/pydevd/pydevd.py b/ptvsd/_vendored/pydevd/pydevd.py index 14a14420..4b2ea7b1 100644 --- a/ptvsd/_vendored/pydevd/pydevd.py +++ b/ptvsd/_vendored/pydevd/pydevd.py @@ -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))