Releases: ionelmc/python-hunter
Releases · ionelmc/python-hunter
v3.5.0
v3.4.3
v3.4.2
v3.4.1
v3.4.0
-
Switched CI to GitHub Actions, this has a couple consequences:
- Support for Python 2.7 is dropped. You can still install it there but it's not tested anymore and
Python 2 specific handling will be removed at some point. - Linux wheels are now provided in
musllinux
andmanylinux2014
variants.
- Support for Python 2.7 is dropped. You can still install it there but it's not tested anymore and
-
Extension building is now completely skipped on PyPy.
-
A pure but tagged as platform specific wheel is now provided for PyPy (to have fast installs there as well).
v3.3.8
v3.3.7
v3.3.6
- Fixed regression from 3.3.4:
stdlib
filter was broken. - Improved the pth file (
PYTHONHUNTER
environment variable activation) to use a clean eval environment.
No bogus variables likeline
(from thesite.py
machinery) will be available anymore. - Fixed a bug in
VarsSnooper
that would make it fail in rare situation where a doublereturn
event is emitted.
v3.3.5
v3.3.3
-
Fixed tracer still being active for other threads after it was stopped.
Python unfortunately only allows removing the trace function for the current thread - now
hunter.tracer.Tracer
will uninstall itself if it's marked as stopped.This fixes bogus errors that appear when using
ipdb
with thehunter.actions.Debugger
action while thread support is enabled (the default).