Skip to content

Commit

Permalink
chore: semantic versioning workflow and update related files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 13, 2025
1 parent ba0e008 commit a93325c
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion operators/cluster_embeddings/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "feluda-cluster-embeddings"
version = "0.1.1"
version = "0.1.2"
requires-python = ">=3.10"
dependencies = [
"scikit-learn>=1.6.0",
Expand Down
2 changes: 1 addition & 1 deletion operators/dimension_reduction/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "feluda-dimension-reduction"
version = "0.1.1"
version = "0.1.2"
requires-python = ">=3.10"
dependencies = [
"scikit-learn>=1.6.0",
Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "0.1.3"
requires-python = ">=3.10"
dependencies = [
"torch>=2.5.1",
Expand Down
2 changes: 1 addition & 1 deletion 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.1.1"
version = "0.1.2"
requires-python = ">=3.10"
dependencies = [
"torch>=2.5.1",
Expand Down
24 changes: 18 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "feluda"
version = "0.9.1"
version = "0.9.2"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
Expand All @@ -13,7 +13,7 @@ dependencies = [
"wget>=3.2",
"toml>=0.10.2",
"pillow>=11.1.0",
"numpy>=2.2.1"
"numpy>=2.2.1",
]

[project.optional-dependencies]
Expand All @@ -29,11 +29,15 @@ dev = [
]

[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"
Expand All @@ -49,7 +53,15 @@ members = [
]

[tool.ruff]
exclude = ["src", "dist", ".docker", ".pytest_cache", ".ruff_cache"]
exclude = [
"src",
"dist",
".docker",
".pytest_cache",
".ruff_cache",
]

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

0 comments on commit a93325c

Please sign in to comment.