Skip to content

Commit

Permalink
Release pydevd to 2.10.0 (initial support for Python 3.12).
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Oct 7, 2023
1 parent 2a48b3f commit f26be32
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build_tools/pydevd_release_process.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ __version_info__ in pydevd.py

Create tag:
-----------
git tag pydev_debugger_2_9_6 -a -m "PyDev.Debugger 2.9.6"
git tag pydev_debugger_2_10_0 -a -m "PyDev.Debugger 2.10.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 @@ -112,7 +112,7 @@
if USE_CUSTOM_SYS_CURRENT_FRAMES_MAP:
from _pydevd_bundle.pydevd_constants import constructed_tid_to_last_frame

__version_info__ = (2, 9, 6)
__version_info__ = (2, 10, 0)
__version_info_str__ = []
for v in __version_info__:
__version_info_str__.append(str(v))
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def accept_file(f):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Debuggers',
],
entry_points={
Expand Down

0 comments on commit f26be32

Please sign in to comment.