You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From requirements.txt (line 4)), it needs construct==2.10.56. With python 3.12, that leads to
ModuleNotFoundError: No module named 'imp'
Its a deprecation issue: the imp module is deprecated in favour of importlib and slated for removal in Python 3.12; see the module's documentation for alternative uses.
Latest version of construct on pypi already got this fixed, so the issue is only in requirements.txt in this project.
The text was updated successfully, but these errors were encountered:
Due to time constraint there is little active maintenance going on at the moment. The easiest way to work around dependency issues like this is using Docker.
From requirements.txt (line 4)), it needs
construct==2.10.56
. With python 3.12, that leads toIts a deprecation issue: the imp module is deprecated in favour of importlib and slated for removal in Python 3.12; see the module's documentation for alternative uses.
Latest version of construct on pypi already got this fixed, so the issue is only in requirements.txt in this project.
The text was updated successfully, but these errors were encountered: