ghammad / pyActigraphy

Python-based open source package for actigraphy data analysis

Home Page:https://ghammad.github.io/pyActigraphy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Packages version conflict

nbeliy opened this issue · comments

Apparently there some version conflicts between numba and numpy:

ImportError: Numba needs NumPy 1.22 or greater. Got NumPy 1.21.

Just updating NumPy do not solve the issue, due to the accelerometer and scipy requirements (from pip output):

accelerometer 7.1.1 requires numpy==1.21.*, but you have numpy 1.24.4 which is incompatible.
scipy 1.7.3 requires numpy<1.23.0,>=1.16.5, but you have numpy 1.24.4 which is incompatible.

The solution would be to downgrade the numba, but I have no idea to what version.

UPD: Version Numba==0.57.1 seems to work.