Numpy released version 1.25 a few days ago, and Tester is removed from this version, ref. NumPy 1.25.0 Release Notes.
File "/opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/pyedflib/init.py", line 19, in
from numpy.testing import Tester
ImportError: cannot import name 'Tester' from 'numpy.testing'
Perhaps, the requirements should be updated to restrict to numpy < 1.25 or remove the usage of Tester in the __init__.py file.
Numpy released version 1.25 a few days ago, and
Tester
is removed from this version, ref. NumPy 1.25.0 Release Notes.Perhaps, the requirements should be updated to restrict to
numpy < 1.25
or remove the usage ofTester
in the__init__.py
file.