Skip to content

Commit

Permalink
Release pydevd 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Oct 27, 2024
1 parent 801c446 commit 6d90e28
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions _pydev_bundle/pydev_monkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -1291,3 +1291,7 @@ def get_original_start_new_thread(threading_module):
return threading_module._original_start_new_thread
except:
return threading_module.start_new_thread


a = lambda: None
print(a.__code__)
2 changes: 1 addition & 1 deletion build_tools/pydevd_release_process.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Update cython-generated files (must update cython and then run build_tools/build

Create tag:
-----------
git tag pydev_debugger_3_1_0 -a -m "PyDev.Debugger 3.1.0"
git tag pydev_debugger_3_2_0 -a -m "PyDev.Debugger 3.2.0"
git push --tags


Expand Down
2 changes: 1 addition & 1 deletion pydevd.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
if USE_CUSTOM_SYS_CURRENT_FRAMES_MAP:
from _pydevd_bundle.pydevd_constants import constructed_tid_to_last_frame

__version_info__ = (3, 1, 0)
__version_info__ = (3, 2, 0)
__version_info_str__ = []
for v in __version_info__:
__version_info_str__.append(str(v))
Expand Down

0 comments on commit 6d90e28

Please sign in to comment.