Skip to content

Commit 8eaa65c

Browse files
committed
Switch deprecation version from 0.22 to 0.23
Signed-off-by: Felix Wang <wangfelix98@gmail.com>
1 parent d23ee23 commit 8eaa65c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/python/feast/entity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def __init__(
108108
warnings.warn(
109109
(
110110
"The `value_type` parameter is being deprecated. Instead, the type of an entity "
111-
"should be specified as a Field in the schema of a feature view. Feast 0.22 and "
111+
"should be specified as a Field in the schema of a feature view. Feast 0.23 and "
112112
"onwards will not support the `value_type` parameter. The `entities` parameter of "
113113
"feature views should also be changed to a List[Entity] instead of a List[str]; if "
114114
"this is not done, entity columns will be mistakenly interpreted as feature columns."

sdk/python/feast/feature_view.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def __init__(
178178
warnings.warn(
179179
(
180180
"The `entities` parameter should be a list of `Entity` objects. "
181-
"Feast 0.22 and onwards will not support passing in a list of "
181+
"Feast 0.23 and onwards will not support passing in a list of "
182182
"strings to define entities."
183183
),
184184
DeprecationWarning,

0 commit comments

Comments
 (0)