From 9af165c38920bd18fc066e193383903e6ecff451 Mon Sep 17 00:00:00 2001 From: Pierce Freeman Date: Wed, 7 Jun 2023 17:26:13 -0700 Subject: [PATCH] Clean setup.py imports --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 89222f7..4737c5b 100644 --- a/setup.py +++ b/setup.py @@ -9,9 +9,7 @@ from packaging.version import parse, Version import platform from setuptools import setup, find_packages -from setuptools.command.build import build import subprocess -from setuptools.command.bdist_egg import bdist_egg import urllib.request import urllib.error @@ -214,7 +212,7 @@ class CachedWheelsCommand(_bdist_wheel): """ def run(self): if FORCE_BUILD: - return build.run(self) + return super().run() raise_if_cuda_home_none("flash_attn")