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

Python 3.12 Compatibility #223

Draft
wants to merge 4 commits into
base: 0.8.x
Choose a base branch
from
Draft

Python 3.12 Compatibility #223

wants to merge 4 commits into from

Commits on Jun 8, 2024

  1. Update versioneer.py

    From Microsoft Copilot
    
    Fortunately, there’s a workaround to address this issue:
    Download the plugin zip file from the GitHub repository (or wherever it’s hosted).
    Unzip the file.
    Edit the versioneer.py file (you can use a text editor like Notepad++).
    Change the following lines:
    From: parser = configparser.SafeConfigParser()
    To: parser = configparser.ConfigParser()
    And: parser.readfp(f)
    To: parser.read_file(f)
    Save your changes.
    Re-zip the entire folder.
    Use the OctoPrint plugin file upload installer to install the modified zip file.
    abacon118 committed Jun 8, 2024
    Configuration menu
    Copy the full SHA
    f8ad199 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    abacon118 committed Jun 8, 2024
    Configuration menu
    Copy the full SHA
    ab313ae View commit details
    Browse the repository at this point in the history
  3. Update README.md

    abacon118 committed Jun 8, 2024
    Configuration menu
    Copy the full SHA
    58f3d86 View commit details
    Browse the repository at this point in the history
  4. Update README.md

    abacon118 committed Jun 8, 2024
    Configuration menu
    Copy the full SHA
    7963cdf View commit details
    Browse the repository at this point in the history