mirror of
https://github.com/torproject/onionbalance.git
synced 2024-11-26 19:00:25 +00:00
versioneer: replace deprecated (and removed in 3.12) SafeConfigParser
This commit is contained in:
parent
d978adb768
commit
b9020ced62
@ -339,9 +339,9 @@ def get_config_from_root(root):
|
||||
# configparser.NoOptionError (if it lacks "VCS="). See the docstring at
|
||||
# the top of versioneer.py for instructions on writing your setup.cfg .
|
||||
setup_cfg = os.path.join(root, "setup.cfg")
|
||||
parser = configparser.SafeConfigParser()
|
||||
parser = configparser.ConfigParser()
|
||||
with open(setup_cfg, "r") as f:
|
||||
parser.readfp(f)
|
||||
parser.read_file(f)
|
||||
VCS = parser.get("versioneer", "VCS") # mandatory
|
||||
|
||||
def get(parser, name):
|
||||
|
Loading…
Reference in New Issue
Block a user