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

Package not supported for Python 3.11 or newer

brennecj opened this issue · comments

I am unable to install the package with Python 3.11, due to issues installing dependencies. It looks like the accelerometer package dependency requires python versions between 3.7 and 3.10 (>=3.7, <3.11) as well as requiring some older versions of scikit-learn, numpy, and scipy. I was hoping to use this package for a project, but unfortunately, I need to use python 3.11 (or newer). Are there any plans to support newer versions of Python?

Hello @brennecj

As you mentioned, the issue is due to installing the 'accelerometer' package. So there is not much I can do, from the pyActigraphy point of view. I suggest to contact the developers of that particular dependency.

One way out would be to modify the code so that this dependency is optional (something along this line). I am reluctant to do it as the package will have different functionalities depending on the user's installation settings but you can do it on your local copy of the code.

Hope that helps.

Greg