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 9c583f9f fix error
9c583f9f is described below
commit 9c583f9f8a167734b3e1fc5269e35f0378da148e
Author: HTHou <[email protected]>
AuthorDate: Fri Jul 12 11:29:32 2024 +0800
fix error
---
.github/workflows/unit-test.yml | 12 ++++++------
python/setup.py | 2 --
2 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml
index d80d6fe5..cff8e2e2 100644
--- a/.github/workflows/unit-test.yml
+++ b/.github/workflows/unit-test.yml
@@ -80,14 +80,14 @@ jobs:
# Use python 3.12 to avoid Cython files don't compile on Mingw-w64 64-bit
# https://bugs.python.org/issue40167
-# - name: Set up python 3.12 for windows
-# if: ${{ matrix.os == 'windows-latest'}}
-# uses: actions/setup-python@v5
-# with:
-# python-version: '3.12'
+ - name: Set up python 3.12 for windows
+ if: ${{ matrix.os == 'windows-latest'}}
+ uses: actions/setup-python@v5
+ with:
+ python-version: '3.12'
# Run the actual maven build including all unit- and integration-tests.
- name: Build and test with Maven (All others)
shell: bash
run: |
- ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} -P
with-java,with-cpp,with-python clean verify
+ ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} -P
with-cpp,with-python clean verify
diff --git a/python/setup.py b/python/setup.py
index 9b2127a4..0b56023a 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -64,7 +64,6 @@ elif platform.system() == "Linux":
copy_lib_files("Linux", libtsfile_shard_dir, libtsfile_dir, "so.1.0")
else:
copy_lib_files("Windows", libtsfile_shard_dir, libtsfile_dir, "dll")
- copy_lib_files("Windows", libtsfile_shard_dir, libtsfile_dir, "dll.a")
source_include_dir = os.path.join(
@@ -103,7 +102,6 @@ setup(
os.path.join("*tsfile", "*.dylib"),
os.path.join("*tsfile", "*.pyd"),
os.path.join("*tsfile", "*.dll"),
- os.path.join("*tsfile", "*.dll.a"),
os.path.join("tsfile", "tsfile.py"),
]
},