@@ -8,31 +8,34 @@ The PyDev Debugger is a Python debugger which historically was created to
88work with ` PyDev ` (in Eclipse).
99
1010Over the years (as it's open source -- EPL) it was adopted by other IDEs/companies
11- (so, it was integrated into PyCharm and is also bundled in VSCode Python by
12- the usage of debugpy).
11+ (so, it was integrated into PyCharm and VSCode Python through ` debugpy ` , which bundles ` pydevd ` ).
1312
1413Note that although it was adopted by other IDEs (and over the years companies of other
1514commercial IDEs did provide backing), by far most of the work was done without any
1615external backing and the ongoing work on the project relies on community support.
1716
18- If you like using it, please consider becoming a backer of the project (this is
17+ So, if you like using it, please consider becoming a backer of the project (this is
1918done through the ` PyDev ` umbrella, so please see https://www.pydev.org/about.html
20- for how to financially contribute to the project).
19+ for how to contribute to the project).
2120
2221The sources for the PyDev.Debugger may be seen at:
2322
2423https://github.com/fabioz/PyDev.Debugger
2524
2625In general, the debugger backend should ** NOT** be installed separately if you're using an IDE which already
27- bundles it (such as PyDev, PyCharm or bundled through debugpy, which is the debug adapter used in
26+ bundles it (such as PyDev, PyCharm or bundled through debugpy, which is the debug adapter used in
2827VSCode Python and Visual Studio Python).
2928
3029It is however available in PyPi so that it can be installed for doing remote debugging with ` pip ` -- so, when
3130debugging a process which runs in another machine, it's possible to ` pip install pydevd ` and in the code use
3231` pydevd.settrace(host='10.1.1.1') ` to connect the debugger backend to the debugger UI running in the IDE
3332(whereas previously the sources had to be manually copied from the IDE installation).
3433
35- ` pydevd ` is compatible with Python 3.6 onwards and is tested both with CPython as well as PyPy.
34+ For instructions on how to ` Remote Debug ` with ` PyDev ` , see: https://www.pydev.org/manual_adv_remote_debugger.html
35+
36+ ` pydevd ` is compatible with Python 3.8 onwards and is tested both with CPython as well as PyPy.
37+
38+ For ` Python 3.3 to 3.7 ` please keep using ` pydevd 2.10.0 ` .
3639
3740For ` Python 2 ` please keep using ` pydevd 2.8.0 ` .
3841
0 commit comments