From 84c68a2901136f3dedc467181978b065f7868234 Mon Sep 17 00:00:00 2001 From: havietisov <9017200+havietisov@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:35:11 +0200 Subject: [PATCH 1/2] Update setup.py Fixes this : https://github.com/Dao-AILab/causal-conv1d/issues/2#issuecomment-1845562938 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 12e36bf..dd3b5f0 100644 --- a/setup.py +++ b/setup.py @@ -259,6 +259,7 @@ def run(self): install_requires=[ "torch", "packaging", + "buildtools" "ninja", ], ) From 1c033ac9ce30fe64779e9350da137850d04dd8b8 Mon Sep 17 00:00:00 2001 From: havietisov <9017200+havietisov@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:37:11 +0200 Subject: [PATCH 2/2] Update setup.py Fixing typo --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dd3b5f0..84f5640 100644 --- a/setup.py +++ b/setup.py @@ -259,7 +259,7 @@ def run(self): install_requires=[ "torch", "packaging", - "buildtools" + "buildtools", "ninja", ], )