Skip to content

Releases: microsoft/debugpy

debugpy v1.8.5

06 Aug 19:46
a68a804
Compare
Choose a tag to compare
  • To simplify command line usage, an entry point has been added to the debugpy package.

    • If you install debugpy into an environment via pip, you can just run debugpy from that environment, instead of running python -m debugpy
    • If you install debugpy into an isolated directory, the debugpy executable can be found in the bin directory inside of the install directory. In this case, you need to add the install directory to your PYTHONPATH in order for the imports to work.
  • To simplify command line usage, switches can now be read from the environment.

    • To do this, use the variable DEBUGPY_EXTRA_ARGV and add whatever command-line switches you like.
      • For example, set DEBUGPY_EXTRA_ARGV=--connect 5678 will allow you to omit the --connect switch from the command line.
    • If the same switch is found on both the command line and the environment, the one from the environment is ignored.
    • The switch that specifies the "target" MUST be on the command line (filename, -m <module>, -c <code>, or --pid <id>)

debugpy v1.8.2

25 Jun 20:42
09b5af0
Compare
Choose a tag to compare

Fixed an issue where ApiScan couldn't scan some of our binaries correctly. This involved changing some linker flags and re-compiling/re-linking some of the pydevd executables and dlls.

This doesn't affect debugpy logic in any way.

debugpy v1.8.1

09 Feb 00:34
Compare
Choose a tag to compare

Python 3.12 is now fully supported.

Fixes: #1408, #1477

Enhancements: #1337

debugpy 1.8.0

12 Sep 20:46
Compare
Choose a tag to compare

Fixes #1379.

Drops Python 3.7 support. Please use debugpy v1.7.0 if you need to debug Python 3.7.

debugpy v1.7.0

07 Sep 22:48
Compare
Choose a tag to compare

Add wheels for Python 3.11 and for macOS on ARM.

Fixes: #1230

debugpy v1.6.7.post1

08 Aug 19:23
Compare
Choose a tag to compare

Testing new release pipeline.

debugpy v1.6.7

05 Apr 20:53
Compare
Choose a tag to compare

Fix invalid file hashes in RECORD of wheels (#1246).

Other improvements: #1074, #1217

debugpy v1.6.6

23 Jan 19:31
Compare
Choose a tag to compare

Disable optimization causing issues when debugging Python 3.10 and 3.11.

debugpy v1.6.5

05 Jan 22:50
Compare
Choose a tag to compare

debugpy v1.6.4

29 Nov 05:33
Compare
Choose a tag to compare