Skip to content

Commit

Permalink
Drop disutils.log support for stdlib logging
Browse files Browse the repository at this point in the history
  • Loading branch information
phillbaker committed Jan 12, 2024
1 parent b9a8372 commit 18ebfa7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ez_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
import platform
import textwrap
import contextlib

from distutils import log
import logging

try:
from urllib.request import urlopen
Expand All @@ -39,6 +38,9 @@
DEFAULT_VERSION = "5.1"
DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/"


log = logging.getLogger(__name__)

def _python_cmd(*args):
"""
Return True if the command succeeded.
Expand Down

0 comments on commit 18ebfa7

Please sign in to comment.