Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contrib/hamilton/contrib/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.

VERSION = (0, 0, 8)
VERSION = (0, 0, 9)
2 changes: 1 addition & 1 deletion contrib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "apache-hamilton-contrib"
version = "0.0.8"
version = "0.0.9"
description = "Apache Hamilton's user contributed shared dataflow library."
readme = "README.md"
requires-python = ">=3.10, <4"
Expand Down
2 changes: 1 addition & 1 deletion dev_tools/language_server/hamilton_lsp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.

__version__ = "0.1.0"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion dev_tools/language_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "apache-hamilton-lsp"
version = "0.1.0"
version = "0.2.0"
description = "Apache Hamilton Language Server powering IDE features."
readme = "README.md"
requires-python = ">=3.10, <4"
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ experiments = [
"fastui",
"uvicorn",
]
lsp = ["sf-hamilton-lsp"] # TODO: switch to apache-hamilton-lsp once stable version is published
lsp = ["apache-hamilton-lsp"]
openlineage = ["openlineage-python"]
pandera = ["pandera"]
pydantic = ["pydantic>=2.0"]
Expand All @@ -77,12 +77,12 @@ pyspark = [
]
ray = ["ray>=2.0.0; python_version < '3.14'", "pyarrow"]
rich = ["rich"]
sdk = ["sf-hamilton-sdk"] # TODO: switch to apache-hamilton-sdk once stable version is published
sdk = ["apache-hamilton-sdk"]
slack = ["slack-sdk"]

mcp = ["fastmcp>=3.0.0,<4"]
tqdm = ["tqdm"]
ui = ["sf-hamilton-ui"] # TODO: switch to apache-hamilton-ui once stable version is published
ui = ["apache-hamilton-ui"]

# vaex -- on >=py3.11 only core part available https://github.com/vaexio/vaex/pull/2331#issuecomment-2437198176
vaex = [
Expand Down
2 changes: 1 addition & 1 deletion ui/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "apache-hamilton-ui"
version = "0.0.17"
version = "0.0.18"
description = "Apache Hamilton UI tracking server for dataflow visualization and monitoring."
requires-python = ">=3.10.1, <4"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion ui/sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "apache-hamilton-sdk"
version = "0.8.0"
version = "0.9.0"
description = "Apache Hamilton SDK for reading and writing to the Apache Hamilton backend APIs that support the UI."
readme = "README.md"
requires-python = ">=3.10, <4"
Expand Down
2 changes: 1 addition & 1 deletion ui/sdk/src/hamilton_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.

__version__ = (0, 8, 0)
__version__ = (0, 9, 0)
Loading