Skip to content

Conversation

@teatkin
Copy link

@teatkin teatkin commented May 24, 2024

No description provided.

@qwertycxz
Copy link

@suoto
Python 3.13 is out now and we need this pull request.

@rt4bc
Copy link

rt4bc commented Jan 24, 2025

I try to fix this issue. it looks working now. I can install locally.
You can have a try.

def get_config_from_root(root):
    """Read the project setup.cfg file to determine Versioneer config."""
    # This might raise EnvironmentError (if setup.cfg is missing), or
    # configparser.NoSectionError (if it lacks a [versioneer] section), or
    # 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.RawConfigParser()
    with open(setup_cfg, "r") as f:
        parser.read_file(f)
    VCS = parser.get("versioneer", "VCS")  # mandatory

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants