Skip to content

Commit

Permalink
version bump 0.0.7 -> 0.0.8 (#452)
Browse files Browse the repository at this point in the history
version bump
  • Loading branch information
nihit authored Jul 12, 2023
1 parent dec63b0 commit bc44c0c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "refuel-autolabel"
version = "0.0.7"
version = "0.0.8"
description = "Label, clean and enrich text datasets with LLMs"
readme = "README.md"
authors = [{ name = "Refuel.ai", email = "[email protected]" }]
Expand Down
8 changes: 8 additions & 0 deletions src/autolabel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
from importlib import metadata

from .labeler import LabelingAgent
from .utils import get_data

try:
__version__ = metadata.version("refuel-autolabel")
except metadata.PackageNotFoundError:
# If the package metadata is not available.
__version__ = ""

0 comments on commit bc44c0c

Please sign in to comment.