Skip to content

Commit

Permalink
fix ParallelSSH#82 - Python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinNowak committed Dec 26, 2024
1 parent a62aaf2 commit 1e1d12f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions versioneer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* https://github.com/warner/python-versioneer
* Brian Warner
* License: Public Domain
* Compatible With: python2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, and pypy
* Compatible With: python2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.12, and pypy
* [![Latest Version]
(https://pypip.in/version/versioneer/badge.svg?style=flat)
](https://pypi.python.org/pypi/versioneer/)
Expand Down Expand Up @@ -278,9 +278,9 @@

from __future__ import print_function
try:
import configparser
from configparser import ConfigParser
except ImportError:
import ConfigParser as configparser
from ConfigParser import SafeConfigParser as ConfigParser
import errno
import json
import os
Expand Down Expand Up @@ -339,9 +339,12 @@ 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()
with open(setup_cfg, "r") as f:
parser.readfp(f)
if hasattr(parser, "read_file"):
parser.read_file(f)
else:
parser.readfp(f)
VCS = parser.get("versioneer", "VCS") # mandatory

def get(parser, name):
Expand Down

0 comments on commit 1e1d12f

Please sign in to comment.