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
A quick fix is to download the gimmemotifs-0.18.0.tar.gz from the release section, then
tar -xzvf gimmemotifs-0.18.0.tar.gz
cd gimmemotifs-0.18.0/
sed -i 's/SafeConfigParser/ConfigParser/g' versioneer.py
sed -i 's/readfp/read_file/g' versioneer.py
python3.12 -m pip install .
SafeConfigParser was replaced by ConfigParser in latest Python v3.12
Python 3.12 removed the
SafeConfigParser
class:https://docs.python.org/3.12/whatsnew/3.12.html#configparser
The
versioneer.py
file included in your repo is therefore not compatible with Python 3.12. Just something to keep in mind as time goes on.The text was updated successfully, but these errors were encountered: