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

Replaced all uses of distutils with setuptools #428

Merged
merged 14 commits into from
Dec 30, 2021
Merged

Commits on Dec 24, 2021

  1. Replaced distutils with setuptools

    Distutils has been deprecated and will be removed in Python 3.12.
    agronholm committed Dec 24, 2021
    Configuration menu
    Copy the full SHA
    55dfd58 View commit details
    Browse the repository at this point in the history
  2. Fixed detection of 32-bit Python on 64-bit OS

    The sysconfig.get_platform() and distutils.util.get_platform() functions return "linux-x64_64", not "linux_x64_64" which the previous code and tests assumed.
    agronholm committed Dec 24, 2021
    Configuration menu
    Copy the full SHA
    7d898b7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ea3a53a View commit details
    Browse the repository at this point in the history
  4. Got rid of require_pkgresources()

    Setuptools will now always be present so this is pointless. The pkg_resources module was never imported here anyway.
    agronholm committed Dec 24, 2021
    Configuration menu
    Copy the full SHA
    83eff2c View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2021

  1. Configuration menu
    Copy the full SHA
    13cc63b View commit details
    Browse the repository at this point in the history
  2. Replace bespoke logger with Python logging logger, restoring info/deb…

    …ug/warning levels to logged messages. Fixed missing f-string for 'wheelfile_path'.
    jaraco committed Dec 26, 2021
    Configuration menu
    Copy the full SHA
    2540fef View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1632618 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2021

  1. Wrapped long lines

    agronholm committed Dec 29, 2021
    Configuration menu
    Copy the full SHA
    1d4ec33 View commit details
    Browse the repository at this point in the history
  2. Reformatted code with black

    agronholm committed Dec 29, 2021
    Configuration menu
    Copy the full SHA
    355be15 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d55ec4d View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2021

  1. Configuration menu
    Copy the full SHA
    a594385 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3aeefcb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5be6e9f View commit details
    Browse the repository at this point in the history
  4. Fixed a typo

    agronholm committed Dec 30, 2021
    Configuration menu
    Copy the full SHA
    d859302 View commit details
    Browse the repository at this point in the history