@@ -39,8 +35,6 @@ In such cases, input data can be written to S3 and the location of the file is
sent as `input_s3` via `S3.bucket()` function of [S3](/api-reference/connectors/s3)
connector.
-This parameter makes sense only when `format` isn't "pandas".
-
When using this option, please ensure that Fennel's data connector
IAM role has the ability to execute read & list operations on this bucket -
talk to Fennel support if you need help.
@@ -115,7 +109,7 @@ in order to resolve the path from the input features to the output features.
===
Union[pd.DataFrame, pd.Series]:
- if format != "pandas":
- raise NotImplementedError(
- "Only pandas format is supported in MockClient"
- )
if input_dataframe is None:
raise ValueError(
"input must contain a key 'input_dataframe' with the input dataframe"
diff --git a/pyproject.toml b/pyproject.toml
index 606c21761..93b0450e2 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fennel-ai"
-version = "1.5.35"
+version = "1.5.36"
description = "The modern realtime feature engineering platform"
authors = ["Fennel AI "]
packages = [{ include = "fennel" }]