CINPLA / exdir

Directory structure standard for experimental pipelines.
http://exdir.rtfd.io
MIT License
72 stars 13 forks source link

Update versioneer from 0.17 to 0.29 #156

Closed musicinmybrain closed 1 year ago

musicinmybrain commented 1 year ago

Fixes Python 3.12 compatibility.

This PR was produced by:

python3 -m venv _e
. _e/bin/activate
pip install versioneer
versioneer install
deactivate

Versioneer 0.17 is not compatible with Python 3.12 because it uses configparser.SafeConfigParser; this was renamed to configparser.ConfigParser in Python 3.2, and the deprecated alias is finally removed in Python 3.12.

musicinmybrain commented 1 year ago

This is still needed. I have rebased the updated versioneer to 0.29 instead of 0.28.