Skip to content

Commit

Permalink
Replace ptvsd with debugpy
Browse files Browse the repository at this point in the history
ptvsd is deprecated
  • Loading branch information
okalachev committed Apr 13, 2024
1 parent bf8482a commit 78465fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions builder/image-software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ cp -R node-v10.15.0-linux-armv6l/* /usr/local/
rm -rf node-v10.15.0-linux-armv6l/
rm node-v10.15.0-linux-armv6l.tar.gz

echo_stamp "Installing ptvsd"
my_travis_retry pip3 install ptvsd
echo_stamp "Installing debugpy"
my_travis_retry pip3 install debugpy

echo_stamp "Installing pyzbar"
my_travis_retry pip3 install pyzbar
Expand Down
5 changes: 2 additions & 3 deletions builder/test/tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ if [ -z $VM ]; then
python --version
[[ $(python -c 'import sys;print(sys.version_info.major)') == "3" ]]

# ptvsd does not have a stand-alone binary
python -m ptvsd --version
python3 -m ptvsd --version
python -m debugpy --version
python3 -m debugpy --version

pigpiod -v
i2cdetect -V
Expand Down

0 comments on commit 78465fc

Please sign in to comment.