From f2343847c0008c20ca79f22cbf9bf11035566935 Mon Sep 17 00:00:00 2001 From: Rory Barnes Date: Fri, 6 Sep 2024 14:27:17 -0700 Subject: [PATCH] Seeing if setup can run without distutils... --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 6166dd80..3d74aec2 100644 --- a/setup.py +++ b/setup.py @@ -42,10 +42,10 @@ class Develop(develop): """Custom develop command that clears build cache before install.""" def run(self): - c = clean(self.distribution) - c.all = True - c.finalize_options() - c.run() + # c = clean(self.distribution) + # c.all = True + # c.finalize_options() + # c.run() develop.run(self)