This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch ht/playgrand
in repository https://gitbox.apache.org/repos/asf/tsfile.git
The following commit(s) were added to refs/heads/ht/playgrand by this push:
new efa3943d fix error
efa3943d is described below
commit efa3943debc9ff6deff661febceba0e51fd611a2
Author: HTHou <[email protected]>
AuthorDate: Fri Jul 12 12:04:32 2024 +0800
fix error
---
python/setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/setup.py b/python/setup.py
index 0b56023a..b9c40a4d 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -79,7 +79,7 @@ ext_modules_tsfile = [
libraries=["tsfile"],
library_dirs=[libtsfile_dir],
include_dirs=[include_dir, np.get_include()],
- runtime_library_dirs=[libtsfile_dir if platform.system() != "Windows"
else None],
+ runtime_library_dirs=[libtsfile_dir] if platform.system() != "Windows"
else None,
extra_compile_args=["-std=c++11"],
language="c++",
)