From 2d2f51afabc0aa9e34f363ebe0bdfe1fdf6c3721 Mon Sep 17 00:00:00 2001 From: "GitHub Actions [Bot]" Date: Fri, 3 Jan 2025 11:11:10 +0000 Subject: [PATCH] chore: semantic versioning workflow and update related files --- operators/cluster_embeddings/pyproject.toml | 19 ++++++++++++++----- operators/dimension_reduction/pyproject.toml | 19 ++++++++++++++----- operators/image_vec_rep_resnet/pyproject.toml | 14 ++++++++++---- operators/vid_vec_rep_clip/pyproject.toml | 14 ++++++++++---- 4 files changed, 48 insertions(+), 18 deletions(-) diff --git a/operators/cluster_embeddings/pyproject.toml b/operators/cluster_embeddings/pyproject.toml index fa3acbb..36c8946 100644 --- a/operators/cluster_embeddings/pyproject.toml +++ b/operators/cluster_embeddings/pyproject.toml @@ -1,15 +1,22 @@ [project] name = "feluda-cluster-embeddings" -version = "0.0.0" +version = "0.1.0" requires-python = ">=3.10" -dependencies = ["scikit-learn>=1.5.1", "numpy>=2.2.1"] +dependencies = [ + "scikit-learn>=1.5.1", + "numpy>=2.2.1", +] [build-system] -requires = ["hatchling"] +requires = [ + "hatchling", +] build-backend = "hatchling.build" [tool.semantic_release] -version_variable = ["pyproject.toml:project.version"] +version_variable = [ + "pyproject.toml:project.version", +] [tool.semantic_release.branches.main] match = "main" @@ -17,4 +24,6 @@ prerelease = false tag_format = "{name}-{version}" [tool.hatch.build.targets.wheel] -packages = ["."] +packages = [ + ".", +] diff --git a/operators/dimension_reduction/pyproject.toml b/operators/dimension_reduction/pyproject.toml index 9f1add5..50a565a 100644 --- a/operators/dimension_reduction/pyproject.toml +++ b/operators/dimension_reduction/pyproject.toml @@ -1,15 +1,22 @@ [project] name = "feluda-dimension-reduction" -version = "0.0.0" +version = "0.1.0" requires-python = ">=3.10" -dependencies = ["scikit-learn>=1.5.1", "numpy>=2.2.1"] +dependencies = [ + "scikit-learn>=1.5.1", + "numpy>=2.2.1", +] [build-system] -requires = ["hatchling"] +requires = [ + "hatchling", +] build-backend = "hatchling.build" [tool.semantic_release] -version_variable = ["pyproject.toml:project.version"] +version_variable = [ + "pyproject.toml:project.version", +] [tool.semantic_release.branches.main] match = "main" @@ -17,4 +24,6 @@ prerelease = false tag_format = "{name}-{version}" [tool.hatch.build.targets.wheel] -packages = ["."] +packages = [ + ".", +] diff --git a/operators/image_vec_rep_resnet/pyproject.toml b/operators/image_vec_rep_resnet/pyproject.toml index 638c3cb..2aff288 100644 --- a/operators/image_vec_rep_resnet/pyproject.toml +++ b/operators/image_vec_rep_resnet/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "feluda-image-vec-rep-resnet" -version = "0.1.0" +version = "0.1.1" requires-python = ">=3.10" dependencies = [ "torch>=2.5.1", @@ -12,11 +12,15 @@ dependencies = [ ] [build-system] -requires = ["hatchling"] +requires = [ + "hatchling", +] build-backend = "hatchling.build" [tool.semantic_release] -version_variable = ["pyproject.toml:project.version"] +version_variable = [ + "pyproject.toml:project.version", +] [tool.semantic_release.branches.main] match = "main" @@ -24,4 +28,6 @@ prerelease = false tag_format = "{name}-{version}" [tool.hatch.build.targets.wheel] -packages = ["."] +packages = [ + ".", +] diff --git a/operators/vid_vec_rep_clip/pyproject.toml b/operators/vid_vec_rep_clip/pyproject.toml index 793c37c..0f2e840 100644 --- a/operators/vid_vec_rep_clip/pyproject.toml +++ b/operators/vid_vec_rep_clip/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "feluda-vid-vec-rep-clip" -version = "0.0.0" +version = "0.1.0" requires-python = ">=3.10" dependencies = [ "torch>=2.5.1", @@ -10,11 +10,15 @@ dependencies = [ ] [build-system] -requires = ["hatchling"] +requires = [ + "hatchling", +] build-backend = "hatchling.build" [tool.semantic_release] -version_variable = ["pyproject.toml:project.version"] +version_variable = [ + "pyproject.toml:project.version", +] [tool.semantic_release.branches.main] match = "main" @@ -22,4 +26,6 @@ prerelease = false tag_format = "{name}-{version}" [tool.hatch.build.targets.wheel] -packages = ["."] +packages = [ + ".", +]