From c1a62c6be9f992e985d2803994fbb67f1cc89e72 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Sun, 22 Nov 2020 00:21:20 -0800 Subject: [PATCH] don't need this anymore --- SConstruct | 6 ------ 1 file changed, 6 deletions(-) diff --git a/SConstruct b/SConstruct index 758d494f3b..376e4053ae 100644 --- a/SConstruct +++ b/SConstruct @@ -1,5 +1,3 @@ -import Cython -import distutils import os import shutil import subprocess @@ -19,10 +17,6 @@ AddOption('--asan', action='store_true', help='turn on ASAN') -# Rebuild cython extensions if python, distutils, or cython change -cython_dependencies = [Value(v) for v in (sys.version, distutils.__version__, Cython.__version__)] -Export('cython_dependencies') - real_arch = arch = subprocess.check_output(["uname", "-m"], encoding='utf8').rstrip() if platform.system() == "Darwin": arch = "Darwin"