From 29378e7456d615bcf43d6dbe8c5eb63c6cd718ff Mon Sep 17 00:00:00 2001 From: ChengHui Chen <27797326+chenghuichen@users.noreply.github.com> Date: Thu, 13 Feb 2025 10:53:13 +0800 Subject: [PATCH 1/2] #36 add __init__.py to fix importlib error --- .gitignore | 1 + dev/build-source-distribution-package.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 08fac18..7a29534 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ dev/download dev/log dist/ *.egg-info/ +venv \ No newline at end of file diff --git a/dev/build-source-distribution-package.sh b/dev/build-source-distribution-package.sh index 461a52f..26a8807 100755 --- a/dev/build-source-distribution-package.sh +++ b/dev/build-source-distribution-package.sh @@ -24,6 +24,7 @@ PROJECT_ROOT="${BASE_DIR}/../" DEPS_DIR=${PROJECT_ROOT}/deps/jars rm -rf ${DEPS_DIR} mkdir -p ${DEPS_DIR} +touch ${DEPS_DIR}/__init__.py cd ${PROJECT_ROOT}/paimon-python-java-bridge From f1bcdabf049e5221198033e6be59c31a92436042 Mon Sep 17 00:00:00 2001 From: ChengHui Chen <27797326+chenghuichen@users.noreply.github.com> Date: Thu, 13 Feb 2025 10:54:42 +0800 Subject: [PATCH 2/2] #36 add __init__.py to fix importlib error --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7a29534..e845db3 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,4 @@ dev/download dev/log dist/ *.egg-info/ -venv \ No newline at end of file +venv