suoto / hdl_checker

Repurposing existing HDL tools to help writing better code
GNU General Public License v3.0
187 stars 22 forks source link

Update versioneer.py to work with python 3.9 #111

Open mahmoud-amiri opened 3 weeks ago

mahmoud-amiri commented 3 weeks ago

the configparser module in Python 3 no longer has the SafeConfigParser class, which has been replaced by configparser.ConfigParser. The readfp method was deprecated in Python 3.2 and removed in Python 3.9. The correct method to use now is read_file.