Skip to content
Merged
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
18 changes: 9 additions & 9 deletions pynumaflow/info/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ class ContainerType(str, Enum):
# To update this value, please follow the instructions for MINIMUM_NUMAFLOW_VERSION in
# https://github.com/numaproj/numaflow-rs/blob/main/src/shared.rs
MINIMUM_NUMAFLOW_VERSION = {
ContainerType.Sourcer: "1.3.0-z",
ContainerType.Sourcetransformer: "1.3.0-z",
ContainerType.Sinker: "1.3.0-z",
ContainerType.Mapper: "1.3.0-z",
ContainerType.Reducer: "1.3.0-z",
ContainerType.Reducestreamer: "1.3.0-z",
ContainerType.Sessionreducer: "1.3.0-z",
ContainerType.Sideinput: "1.3.0-z",
ContainerType.Fbsinker: "1.3.0-z",
ContainerType.Sourcer: "1.4.0-z",
ContainerType.Sourcetransformer: "1.4.0-z",
ContainerType.Sinker: "1.4.0-z",
ContainerType.Mapper: "1.4.0-z",
ContainerType.Reducer: "1.4.0-z",
ContainerType.Reducestreamer: "1.4.0-z",
ContainerType.Sessionreducer: "1.4.0-z",
ContainerType.Sideinput: "1.4.0-z",
ContainerType.Fbsinker: "1.4.0-z",
}


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pynumaflow"
version = "0.8.0"
version = "0.9.0"
description = "Provides the interfaces of writing Python User Defined Functions and Sinks for NumaFlow."
authors = ["NumaFlow Developers"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_info_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_success_write_info(self):
self.assertEqual(file_data["metadata"]["CPU_LIMIT"], "3")
self.assertEqual(file_data["protocol"], "uds")
self.assertEqual(file_data["language"], "python")
self.assertEqual(file_data["minimum_numaflow_version"], "1.3.0-z")
self.assertEqual(file_data["minimum_numaflow_version"], "1.4.0-z")

def test_metadata_env(self):
test_file = "/tmp/test_info_server"
Expand Down
Loading