Skip to content

Commit

Permalink
Release pydevd 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Feb 1, 2024
1 parent a5bfe8e commit 5e4c0c5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pydevd-tests-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
python: "3.11.0"
os: ubuntu-20.04
PYDEVD_USE_CYTHON: YES
- name: "ubuntu-py312-cython"
- name: "ubuntu-py312-cython-checkbin"
python: "3.12.0"
os: ubuntu-20.04
PYDEVD_USE_CYTHON: YES
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
rm pydevd_attach_to_process/*.so
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp38-*manylinux*x86_64
CIBW_BUILD: cp310-*manylinux*x86_64 cp311-*manylinux*x86_64 cp312-*manylinux*x86_64
CIBW_BUILD_VERBOSITY: 1

- name: Check cython unchanged
Expand Down
1 change: 0 additions & 1 deletion build_tools/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ def build():
sys.executable, os.path.join(os.path.dirname(__file__), '..', 'setup_pydevd_cython.py'), 'build_ext', '--inplace',
] + additional_args
print('Calling args: %s' % (args,))
env['PYDEVD_FORCE_BUILD_ALL'] = '1'
subprocess.check_call(args, env=env,)


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

__version_info__ = (3, 0, 2)
__version_info__ = (3, 0, 3)
__version_info_str__ = []
for v in __version_info__:
__version_info_str__.append(str(v))
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def accept_file(f):
]

py_version = sys.version_info[:2]
if (3, 6) <= py_version <= (3, 11):
if (3, 6) <= py_version <= (3, 10):
ext_modules.append(
Extension(
'_pydevd_frame_eval.pydevd_frame_evaluator',
Expand All @@ -186,6 +186,8 @@ def accept_file(f):
)
)

# Note: 3.11 does not have frame eval implemented (nor sys.monitoring)

if py_version >= (3, 12):
ext_modules.append(
Extension(
Expand Down

0 comments on commit 5e4c0c5

Please sign in to comment.