Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix import errors in versioneer.py (Python 3.12) #1019

Merged
merged 1 commit into from
May 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions versioneer.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,12 @@
import configparser
except ImportError:
import ConfigParser as configparser

try:
from configparser import SafeConfigParser as ConfigParser
except ImportError:
from configparser import ConfigParser

import errno
import json
import os
Expand Down Expand Up @@ -341,9 +347,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)
try:
parser.readfp(f)
except AttributeError:
parser.read_file(f)
VCS = parser.get("versioneer", "VCS") # mandatory

def get(parser, name):
Expand Down
Loading