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

Python312 #290

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Python312 #290

wants to merge 3 commits into from

Commits on Nov 13, 2022

  1. Import setup from setuptools

    setuptools 60 uses its own bundled version of distutils, by default. It
    injects this into sys.modules, at import time. So we need to make sure
    that it is imported, before anything else imports distutils, to ensure
    everything is using the same distutils version.
    
    This change in setuptools is to prepare for Python 3.12, which will drop
    distutils.
    
    In this case, the best way to deal with the problem is to just use
    setuptools' setup().
    
    Fixes: https://bugs.debian.org/1022482 and https://bugs.debian.org/1022538
    stefanor committed Nov 13, 2022
    Configuration menu
    Copy the full SHA
    7e7d916 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2024

  1. Configuration menu
    Copy the full SHA
    131cec6 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. Configuration menu
    Copy the full SHA
    acdfd4f View commit details
    Browse the repository at this point in the history