Skip to content

Commit

Permalink
Merge pull request #481 from tattle-made/main
Browse files Browse the repository at this point in the history
merge main to dev
  • Loading branch information
aatmanvaidya authored Jan 3, 2025
2 parents 777507e + 2d2f51a commit ff2a969
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 18 deletions.
19 changes: 14 additions & 5 deletions operators/cluster_embeddings/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,29 @@
[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"
prerelease = false
tag_format = "{name}-{version}"

[tool.hatch.build.targets.wheel]
packages = ["."]
packages = [
".",
]
19 changes: 14 additions & 5 deletions operators/dimension_reduction/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,29 @@
[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"
prerelease = false
tag_format = "{name}-{version}"

[tool.hatch.build.targets.wheel]
packages = ["."]
packages = [
".",
]
14 changes: 10 additions & 4 deletions operators/image_vec_rep_resnet/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -12,16 +12,22 @@ 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"
prerelease = false
tag_format = "{name}-{version}"

[tool.hatch.build.targets.wheel]
packages = ["."]
packages = [
".",
]
14 changes: 10 additions & 4 deletions operators/vid_vec_rep_clip/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -10,16 +10,22 @@ 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"
prerelease = false
tag_format = "{name}-{version}"

[tool.hatch.build.targets.wheel]
packages = ["."]
packages = [
".",
]

0 comments on commit ff2a969

Please sign in to comment.