From 95ee479cfdf198c5c48abd0238d40a1e6814ea37 Mon Sep 17 00:00:00 2001 From: Hariharan Devarajan Date: Thu, 10 Aug 2023 10:51:44 -0700 Subject: [PATCH] added signals for managing finalize. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 334819fe..b204e76f 100644 --- a/setup.py +++ b/setup.py @@ -43,8 +43,8 @@ def build_extension(self, ext: CMakeExtension) -> None: if "DLIO_PYTHON_SITE" in os.environ: dlio_site = os.environ['DLIO_PYTHON_SITE'] cmake_args += [f"-DDLIO_PYTHON_SITE={dlio_site}"] + project_dir = Path.cwd() if "DLIO_BUILD_DEPENDENCIES" in os.environ and os.environ['DLIO_BUILD_DEPENDENCIES'] == "1": - project_dir = Path.cwd() dependency_file = open(f"{project_dir}/dependency/cpp.requirements.txt", 'r') dependencies = dependency_file.readlines() for dependency in dependencies: