From 3480eb56833cbe678e5a2201c473801881c8f91d Mon Sep 17 00:00:00 2001 From: Rory Barnes Date: Fri, 6 Sep 2024 14:29:55 -0700 Subject: [PATCH] Actually removed distutils! --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 3d74aec2..851df596 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,12 @@ import os import sys -if sys.version_info >= (3, 12): - # For Python 3.12 and above, use setuptools - from setuptools.command.clean import clean -else: - # For Python versions below 3.12, use distutils - from distutils.command.clean import clean +# if sys.version_info >= (3, 12): +# # For Python 3.12 and above, use setuptools +# from setuptools.command.clean import clean +# else: +# # For Python versions below 3.12, use distutils +# from distutils.command.clean import clean from glob import glob