From bb090c7035f41118b9a6adb50e5361c6ebca77a6 Mon Sep 17 00:00:00 2001 From: David Wood Date: Wed, 8 May 2024 13:01:56 -0400 Subject: [PATCH 1/2] bump library versions and add lib-release make target Signed-off-by: David Wood --- .make.versions | 4 ++-- Makefile | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.make.versions b/.make.versions index b44fc74ad..81870edd4 100644 --- a/.make.versions +++ b/.make.versions @@ -4,8 +4,8 @@ ################################################################################ # Data prep lab wheel version -DPL_LIB_VERSION=0.1.5 -DPL_LIB_KFP_VERSION=0.1.7 +DPL_LIB_VERSION=0.1.6 +DPL_LIB_KFP_VERSION=0.1.8 # Begin transform versions/tags BLOCKLIST_VERSION=0.2.0 diff --git a/Makefile b/Makefile index f716fe6dd..b9629f64f 100644 --- a/Makefile +++ b/Makefile @@ -43,4 +43,12 @@ test:: @# Help: Recursively $@ in all subdirs @$(MAKE) RULE=$@ .recurse +lib-release: + @# Help: Publish data-prep-lab $(DPL_LIB_VERSION) and data-prep-lab-kfp $(DPL_LIB_KFP_VERSION) libraries to pypi + @$(MAKE) -C data-processing-lib build publish + @$(MAKE) -C kfp/kfp_support_lib build publish + @echo "" + @echo "This modified files in the repo. Please be sure to commit/push back to the repository." + @echo "" + From dd7d289df746f917067e07e5b0b44247f48f2455 Mon Sep 17 00:00:00 2001 From: David Wood Date: Wed, 8 May 2024 14:29:56 -0400 Subject: [PATCH 2/2] publish the two libs which changes the pyproject.toml versions Signed-off-by: David Wood --- data-processing-lib/pyproject.toml | 2 +- kfp/kfp_support_lib/pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data-processing-lib/pyproject.toml b/data-processing-lib/pyproject.toml index 063df2aab..da3fcef25 100644 --- a/data-processing-lib/pyproject.toml +++ b/data-processing-lib/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "data_prep_lab" -version = "0.1.5" +version = "0.1.6" requires-python = ">=3.10" description = "Data Preparation Laboratory Library" license = {text = "Apache-2.0"} diff --git a/kfp/kfp_support_lib/pyproject.toml b/kfp/kfp_support_lib/pyproject.toml index 0fe0f84c7..31216c7a4 100644 --- a/kfp/kfp_support_lib/pyproject.toml +++ b/kfp/kfp_support_lib/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "data_prep_lab_kfp" -version = "0.1.7" +version = "0.1.8" requires-python = ">=3.10" description = "Data Preparation Laboratory Library. KFP support" license = {text = "Apache-2.0"} @@ -14,7 +14,7 @@ authors = [ dependencies = [ "kfp==1.8.22", "requests", - "data-prep-lab==0.1.5", + "data-prep-lab==0.1.6", ] [build-system]