From 5aa000ec2955407271e660630e8db376adbc6858 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Wed, 23 Feb 2022 20:52:35 +0200 Subject: Prefer setuptools imports to distutils imports The non-conditional imports have been around for 6 to 17 years, so they should be safe in conservative situations too. Refs #824 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 9a4af23..e036bbd 100755 --- a/setup.py +++ b/setup.py @@ -2,9 +2,8 @@ import subprocess import sys -from distutils.cmd import Command -from setuptools import setup +from setuptools import setup, Command try: from babel import __version__ -- cgit v1.2.1