Skip to content

Commit

Permalink
Cut release 0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: David Wood <[email protected]>
  • Loading branch information
daw3rd committed Jun 27, 2024
1 parent 75b1fa8 commit 9e93905
Show file tree
Hide file tree
Showing 40 changed files with 94 additions and 94 deletions.
2 changes: 1 addition & 1 deletion .make.versions
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ DPK_MINOR_VERSION=2
DPK_MICRO_VERSION=0
# The suffix is generally always set in the main/development branch and only nulled out when creating release branches.
# It can be manually incremented, for example, to allow publishing a new intermediate version wheel to pypi.
DPK_VERSION_SUFFIX=.dev6
DPK_VERSION_SUFFIX=

DPK_VERSION=$(DPK_MAJOR_VERSION).$(DPK_MINOR_VERSION).$(DPK_MICRO_VERSION)$(DPK_VERSION_SUFFIX)

Expand Down
2 changes: 1 addition & 1 deletion data-processing-lib/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data_prep_toolkit"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
keywords = ["data", "data preprocessing", "data preparation", "llm", "generative", "ai", "fine-tuning", "llmapps" ]
description = "Data Preparation Toolkit Library"
Expand Down
4 changes: 2 additions & 2 deletions data-processing-lib/ray/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data_prep_toolkit_ray"
version = "0.2.0.dev6"
version = "0.2.0"
keywords = ["data", "data preprocessing", "data preparation", "llm", "generative", "ai", "fine-tuning", "llmapps" ]
requires-python = ">=3.10"
description = "Data Preparation Toolkit Library for Ray"
Expand All @@ -11,7 +11,7 @@ authors = [
{ name = "Boris Lublinsky", email = "[email protected]" },
]
dependencies = [
"data-prep-toolkit==0.2.0.dev6",
"data-prep-toolkit==0.2.0",
"ray[default]==2.24.0",
# These two are to fix security issues identified by quay.io
"fastapi>=0.110.2",
Expand Down
4 changes: 2 additions & 2 deletions data-processing-lib/spark/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data_prep_toolkit_spark"
version = "0.2.0.dev6"
version = "0.2.0"
keywords = ["data", "data preprocessing", "data preparation", "llm", "generative", "ai", "fine-tuning", "llmapps" ]
requires-python = ">=3.10"
description = "Data Preparation Toolkit Library for Spark"
Expand All @@ -11,7 +11,7 @@ authors = [
{ name = "Constantin Adam", email = "[email protected]" },
]
dependencies = [
"data-prep-toolkit==0.2.0.dev6",
"data-prep-toolkit==0.2.0",
"pyspark>=3.5.1",
"pyyaml>=6.0.1",
]
Expand Down
4 changes: 2 additions & 2 deletions kfp/kfp_support_lib/kfp_v1_workflow_support/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data_prep_toolkit_kfp_v1"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10,<3.12"
description = "Data Preparation Kit Library. KFP support"
license = {text = "Apache-2.0"}
Expand All @@ -13,7 +13,7 @@ authors = [
]
dependencies = [
"kfp==1.8.22",
"data-prep-toolkit-kfp-shared==0.2.0.dev6",
"data-prep-toolkit-kfp-shared==0.2.0",
]

[build-system]
Expand Down
4 changes: 2 additions & 2 deletions kfp/kfp_support_lib/kfp_v2_workflow_support/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data_prep_toolkit_kfp_v2"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10,<3.12"
description = "Data Preparation Kit Library. KFP support"
license = {text = "Apache-2.0"}
Expand All @@ -14,7 +14,7 @@ authors = [
dependencies = [
"kfp==2.7.0",
"kfp-kubernetes==1.2.0",
"data-prep-toolkit-kfp-shared==0.2.0.dev6",
"data-prep-toolkit-kfp-shared==0.2.0",
]

[build-system]
Expand Down
4 changes: 2 additions & 2 deletions kfp/kfp_support_lib/shared_workflow_support/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data_prep_toolkit_kfp_shared"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10,<3.12"
description = "Data Preparation Kit Library. KFP support"
license = {text = "Apache-2.0"}
Expand All @@ -14,7 +14,7 @@ authors = [
dependencies = [
"requests",
"kubernetes",
"data-prep-toolkit-ray==0.2.0.dev6",
"data-prep-toolkit-ray==0.2.0",
]

[build-system]
Expand Down
16 changes: 8 additions & 8 deletions kfp/superworkflows/ray/kfp_v1/superworkflow_code_sample_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
run_fuzzy_dedup_op = comp.load_component_from_file(component_spec_path + "executeSubWorkflowComponent.yaml")
run_tokenization_op = comp.load_component_from_file(component_spec_path + "executeSubWorkflowComponent.yaml")

code_to_parquet_image = "quay.io/dataprep1/data-prep-kit/code2parquet-ray:0.2.0.dev6"
proglang_select_image = "quay.io/dataprep1/data-prep-kit/proglang_select-ray:0.2.0.dev6"
code_quality_image = "quay.io/dataprep1/data-prep-kit/code_quality-ray:0.2.0.dev6"
malware_image = "quay.io/dataprep1/data-prep-kit/malware-ray:0.2.0.dev6"
doc_id_image = "quay.io/dataprep1/data-prep-kit/doc_id-ray:0.2.0.dev6"
ededup_image = "quay.io/dataprep1/data-prep-kit/ededup-ray:0.2.0.dev6"
fdedup_image = "quay.io/dataprep1/data-prep-kit/fdedup-ray:0.2.0.dev6"
tokenizer_image = "quay.io/dataprep1/data-prep-kit/tokenization-ray:0.2.0.dev6"
code_to_parquet_image = "quay.io/dataprep1/data-prep-kit/code2parquet-ray:0.2.0"
proglang_select_image = "quay.io/dataprep1/data-prep-kit/proglang_select-ray:0.2.0"
code_quality_image = "quay.io/dataprep1/data-prep-kit/code_quality-ray:0.2.0"
malware_image = "quay.io/dataprep1/data-prep-kit/malware-ray:0.2.0"
doc_id_image = "quay.io/dataprep1/data-prep-kit/doc_id-ray:0.2.0"
ededup_image = "quay.io/dataprep1/data-prep-kit/ededup-ray:0.2.0"
fdedup_image = "quay.io/dataprep1/data-prep-kit/fdedup-ray:0.2.0"
tokenizer_image = "quay.io/dataprep1/data-prep-kit/tokenization-ray:0.2.0"


# Pipeline to invoke execution on remote resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
run_exact_dedup_op = comp.load_component_from_file(component_spec_path + "executeSubWorkflowComponent.yaml")
run_fuzzy_dedup_op = comp.load_component_from_file(component_spec_path + "executeSubWorkflowComponent.yaml")

doc_id_image = "quay.io/dataprep1/data-prep-kit/doc_id-ray:0.2.0.dev6"
ededup_image = "quay.io/dataprep1/data-prep-kit/ededup-ray:0.2.0.dev6"
fdedup_image = "quay.io/dataprep1/data-prep-kit/fdedup-ray:0.2.0.dev6"
doc_id_image = "quay.io/dataprep1/data-prep-kit/doc_id-ray:0.2.0"
ededup_image = "quay.io/dataprep1/data-prep-kit/ededup-ray:0.2.0"
fdedup_image = "quay.io/dataprep1/data-prep-kit/fdedup-ray:0.2.0"

# Pipeline to invoke execution on remote resource
@dsl.pipeline(
Expand Down
4 changes: 2 additions & 2 deletions transforms/code/code2parquet/kfp_ray/code2parquet_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
# the name of the job script
EXEC_SCRIPT_NAME: str = "code2parquet_transform_ray.py"

task_image = "quay.io/dataprep1/data-prep-kit/code2parquet-ray:0.2.0.dev6"
task_image = "quay.io/dataprep1/data-prep-kit/code2parquet-ray:0.2.0"


# components
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0.dev6"
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0"

# path to kfp component specifications files
component_spec_path = "../../../../kfp/kfp_ray_components/"
Expand Down
4 changes: 2 additions & 2 deletions transforms/code/code2parquet/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dpk_code2parquet_transform_python"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
description = "code2parquet Python Transform"
license = {text = "Apache-2.0"}
Expand All @@ -10,7 +10,7 @@ authors = [
{ name = "Boris Lublinsky", email = "[email protected]" },
]
dependencies = [
"data-prep-toolkit==0.2.0.dev6",
"data-prep-toolkit==0.2.0",
"parameterized",
"pandas",
]
Expand Down
6 changes: 3 additions & 3 deletions transforms/code/code2parquet/ray/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dpk_code2parquet_transform_ray"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
description = "code2parquet Ray Transform"
license = {text = "Apache-2.0"}
Expand All @@ -10,8 +10,8 @@ authors = [
{ name = "Boris Lublinsky", email = "[email protected]" },
]
dependencies = [
"data-prep-toolkit-ray==0.2.0.dev6",
"dpk-code2parquet-transform-python==0.2.0.dev6",
"data-prep-toolkit-ray==0.2.0",
"dpk-code2parquet-transform-python==0.2.0",
"parameterized",
"pandas",
]
Expand Down
4 changes: 2 additions & 2 deletions transforms/code/code_quality/kfp_ray/code_quality_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
EXEC_SCRIPT_NAME: str = "code_quality_transform_ray.py"
PREFIX: str = ""

task_image = "quay.io/dataprep1/data-prep-kit/code_quality-ray:0.2.0.dev6"
task_image = "quay.io/dataprep1/data-prep-kit/code_quality-ray:0.2.0"

# components
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0.dev6"
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0"

# path to kfp component specifications files
component_spec_path = "../../../../kfp/kfp_ray_components/"
Expand Down
4 changes: 2 additions & 2 deletions transforms/code/code_quality/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dpk_code_quality_transform_python"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
description = "Code Quality Python Transform"
license = {text = "Apache-2.0"}
Expand All @@ -9,7 +9,7 @@ authors = [
{ name = "Shivdeep Singh", email = "[email protected]" },
]
dependencies = [
"data-prep-toolkit==0.2.0.dev6",
"data-prep-toolkit==0.2.0",
"bs4==0.0.2",
"transformers==4.38.2",
]
Expand Down
6 changes: 3 additions & 3 deletions transforms/code/code_quality/ray/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dpk_code_quality_transform_ray"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
description = "Code Quality Ray Transform"
license = {text = "Apache-2.0"}
Expand All @@ -9,8 +9,8 @@ authors = [
{ name = "Shivdeep Singh", email = "[email protected]" },
]
dependencies = [
"dpk-code-quality-transform-python==0.2.0.dev6",
"data-prep-toolkit-ray==0.2.0.dev6",
"dpk-code-quality-transform-python==0.2.0",
"data-prep-toolkit-ray==0.2.0",
]

[build-system]
Expand Down
4 changes: 2 additions & 2 deletions transforms/code/malware/kfp_ray/malware_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
# the name of the job script
EXEC_SCRIPT_NAME: str = "malware_transform_ray.py"

task_image = "quay.io/dataprep1/data-prep-kit/malware-ray:0.2.0.dev6"
task_image = "quay.io/dataprep1/data-prep-kit/malware-ray:0.2.0"

# components
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0.dev6"
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0"

# path to kfp component specifications files
component_spec_path = "../../../../kfp/kfp_ray_components/"
Expand Down
4 changes: 2 additions & 2 deletions transforms/code/malware/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dpk_malware_transform_python"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
description = "Malware Python Transform"
license = {text = "Apache-2.0"}
Expand All @@ -9,7 +9,7 @@ authors = [
{ name = "Takuya Goto", email = "[email protected]" },
]
dependencies = [
"data-prep-toolkit==0.2.0.dev6",
"data-prep-toolkit==0.2.0",
"clamd==1.0.2",
]

Expand Down
6 changes: 3 additions & 3 deletions transforms/code/malware/ray/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dpk_malware_transform_ray"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
description = "Malware Ray Transform"
license = {text = "Apache-2.0"}
Expand All @@ -9,8 +9,8 @@ authors = [
{ name = "Takuya Goto", email = "[email protected]" },
]
dependencies = [
"dpk-malware-transform-python==0.2.0.dev6",
"data-prep-toolkit-ray==0.2.0.dev6",
"dpk-malware-transform-python==0.2.0",
"data-prep-toolkit-ray==0.2.0",
]

[build-system]
Expand Down
4 changes: 2 additions & 2 deletions transforms/code/proglang_select/kfp_ray/proglang_select_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
# the name of the job script
EXEC_SCRIPT_NAME: str = "proglang_select_transform_ray.py"

task_image = "quay.io/dataprep1/data-prep-kit/proglang_select-ray:0.2.0.dev6"
task_image = "quay.io/dataprep1/data-prep-kit/proglang_select-ray:0.2.0"

# components
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0.dev6"
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0"

# path to kfp component specifications files
component_spec_path = "../../../../kfp/kfp_ray_components/"
Expand Down
4 changes: 2 additions & 2 deletions transforms/code/proglang_select/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dpk_proglang_select_transform_python"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
description = "Programming Language Selection Python Transform"
license = {text = "Apache-2.0"}
Expand All @@ -9,7 +9,7 @@ authors = [
{ name = "Shivdeep Singh", email = "[email protected]" },
]
dependencies = [
"data-prep-toolkit==0.2.0.dev6",
"data-prep-toolkit==0.2.0",
]

[build-system]
Expand Down
6 changes: 3 additions & 3 deletions transforms/code/proglang_select/ray/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dpk_proglang_select_transform_ray"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
description = "Programming Language Selection Ray Transform"
license = {text = "Apache-2.0"}
Expand All @@ -9,8 +9,8 @@ authors = [
{ name = "Shivdeep Singh", email = "[email protected]" },
]
dependencies = [
"dpk-proglang-select-transform-python==0.2.0.dev6",
"data-prep-toolkit-ray==0.2.0.dev6",
"dpk-proglang-select-transform-python==0.2.0",
"data-prep-toolkit-ray==0.2.0",
]

[build-system]
Expand Down
4 changes: 2 additions & 2 deletions transforms/language/lang_id/kfp_ray/lang_id_multiple_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
from workflow_support.compile_utils import ONE_HOUR_SEC, ONE_WEEK_SEC, ComponentUtils


task_image = "quay.io/dataprep1/data-prep-kit/lang_id-ray:0.2.0.dev6"
task_image = "quay.io/dataprep1/data-prep-kit/lang_id-ray:0.2.0"

# the name of the job script
EXEC_SCRIPT_NAME: str = "lang_id_transform_ray.py"

# components
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0.dev6"
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0"

# path to kfp component specifications files
component_spec_path = "../../../../kfp/kfp_ray_components/"
Expand Down
4 changes: 2 additions & 2 deletions transforms/language/lang_id/kfp_ray/lang_id_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
from workflow_support.compile_utils import ONE_HOUR_SEC, ONE_WEEK_SEC, ComponentUtils


task_image = "quay.io/dataprep1/data-prep-kit/lang_id-ray:0.2.0.dev6"
task_image = "quay.io/dataprep1/data-prep-kit/lang_id-ray:0.2.0"

# the name of the job script
EXEC_SCRIPT_NAME: str = "lang_id_transform_ray.py"

# components
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0.dev6"
base_kfp_image = "quay.io/dataprep1/data-prep-kit/kfp-data-processing:0.2.0"

# path to kfp component specifications files
component_spec_path = "../../../../kfp/kfp_ray_components/"
Expand Down
4 changes: 2 additions & 2 deletions transforms/language/lang_id/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dpk_lang_id_transform_python"
version = "0.2.0.dev6"
version = "0.2.0"
requires-python = ">=3.10"
description = "Language Identification Python Transform"
license = {text = "Apache-2.0"}
Expand All @@ -9,7 +9,7 @@ authors = [
{ name = "Daiki Tsuzuku", email = "[email protected]" }
]
dependencies = [
"data-prep-toolkit==0.2.0.dev6",
"data-prep-toolkit==0.2.0",
"fasttext==0.9.2",
"langcodes==3.3.0",
"huggingface-hub==0.21.4",
Expand Down
Loading

0 comments on commit 9e93905

Please sign in to comment.