haystack-ml-stack 0.2.0__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: haystack-ml-stack
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Functions related to Haystack ML
5
5
  Author-email: Oscar Vega <oscar@haystack.tv>
6
6
  License: MIT
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "haystack-ml-stack"
8
- version = "0.2.0"
8
+ version = "0.2.1"
9
9
  description = "Functions related to Haystack ML"
10
10
  readme = "README.md"
11
11
  authors = [{ name = "Oscar Vega", email = "oscar@haystack.tv" }]
@@ -1,4 +1,4 @@
1
1
  from .app import create_app
2
2
 
3
3
  __all__ = ["create_app"]
4
- __version__ = "0.2.0"
4
+ __version__ = "0.2.1"
@@ -169,7 +169,9 @@ async def set_stream_features(
169
169
  features_cache[cache_key] = {
170
170
  "value": parsed.get("value"),
171
171
  "cache_ttl_in_seconds": int(parsed.get("cache_ttl_in_seconds", -1)),
172
- "updated_at": datetime.datetime.fromisoformat(parsed.get("updated_at")),
172
+ "updated_at": datetime.datetime.fromisoformat(
173
+ parsed.get("updated_at")
174
+ ).replace(tzinfo=None),
173
175
  }
174
176
  if cache_key in cache_miss:
175
177
  cache_miss[cache_key][feature_name] = parsed.get("value")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: haystack-ml-stack
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Functions related to Haystack ML
5
5
  Author-email: Oscar Vega <oscar@haystack.tv>
6
6
  License: MIT