Skip to content

Commit

Permalink
chore: fix version retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Castillo committed Apr 6, 2023
1 parent 2a6886c commit ed3fa7b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Issues = "https://github.com/Arize-ai/phoenix/issues"
Source = "https://github.com/Arize-ai/phoenix"

[tool.hatch.version]
path = "src/phoenix/__about__.py"
path = "src/phoenix/__init__.py"

[build-system]
requires = ["hatchling"]
Expand Down Expand Up @@ -131,7 +131,6 @@ testpaths = [
branch = true
parallel = true
omit = [
"src/phoenix/__about__.py",
"**/__init__.py",
]

Expand Down Expand Up @@ -191,7 +190,6 @@ build = 'strawberry export-schema phoenix.server.api.schema:schema > app/schema.

[tool.interrogate]
fail-under = 0
exclude=["src/phoenix/__about__.py"]
# generate-badge = "badges/"
omit-covered-files = true
ignore-init-method = true
Expand Down
1 change: 0 additions & 1 deletion src/phoenix/__about__.py

This file was deleted.

18 changes: 16 additions & 2 deletions src/phoenix/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from .datasets import Dataset, EmbeddingColumnNames, Schema, load_example, ExampleDatasets
from .session import active_session, close_app, launch_app, Session
from .datasets import Dataset, EmbeddingColumnNames, ExampleDatasets, Schema, load_example
from .session import Session, active_session, close_app, launch_app

__version__ = "0.0.8"

# module level doc-string
__doc__ = """
Expand All @@ -16,3 +18,15 @@
- Identify problematic embeddings cohorts using UMAP and clustering
- Explore model performance, drift, and data quality metrics
"""

__all__ = [
"Dataset",
"EmbeddingColumnNames",
"Schema",
"load_example",
"ExampleDatasets",
"active_session",
"close_app",
"launch_app",
"Session",
]

0 comments on commit ed3fa7b

Please sign in to comment.