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 42d894ea fix error
42d894ea is described below
commit 42d894eaa99237f4f84906d84fb2677339eaeb27
Author: HTHou <[email protected]>
AuthorDate: Fri Jul 12 11:16:46 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 20820b88..9b2127a4 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -80,7 +80,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"],
+ runtime_library_dirs=[libtsfile_dir if platform.system() != "Windows"
else None],
extra_compile_args=["-std=c++11"],
language="c++",
)