All Versions
50
Latest Version
Avg Release Cycle
59 days
Latest Release
1161 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v3.4.3 Changes
December 15, 2021- โ Removed most of the Python 2 support code.
- ๐ Fix some refactoring regression in
setup.py
and make the 3.4.x series installable only on Python 3.6 and later. - ๐ Yank 3.4.0, 3.4.1, 3.4.2 releases to avoid install problems on Python 2.7.
-
v3.4.2 Changes
December 15, 2021- ๐ Fixed CI to properly make win32 wheels.
-
v3.4.1 Changes
December 14, 2021- โ Add support for building a
pp37.pp38
tagged wheel (basically an universal wheel installable just for those two PyPy versions).
- โ Add support for building a
-
v3.4.0 Changes
December 14, 2021๐ท 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.
๐ 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 Changes
June 23, 2021- ๐ Fixed CI problem that publishes same type of wheels two times.
-
v3.3.7 Changes
June 23, 2021- ๐ Fixed a bug with how
stdlib
is detected on Windows (at least).
- ๐ Fixed a bug with how
-
v3.3.6 Changes
June 23, 2021- 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.
- Fixed regression from 3.3.4:
-
v3.3.5 Changes
June 11, 2021- โ Added support for Python 3.10.
- โ Added support for
time
objects and thefold
option insafe_repr
. - 3.3.4 was skipped cause I messed up the CI.
-
v3.3.3 Changes
May 04, 2021- ๐ 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 :obj:
~hunter.tracer.Tracer
will uninstall itself if it's marked as stopped.This fixes bogus errors that appear when using
ipdb
with the :class:hunter.actions.Debugger
action while thread support is enabled (the default). -
v3.3.2 Changes
March 25, 2021- ๐ Changed CI to build Python 3.9 wheels. Python 3.5 no longer tested and wheels no longer built to keep things simple.
- ๐ Documentation improvements.