Skip to content

Commit

Permalink
Merge pull request #104 from modular-ml/bot_version_bump
Browse files Browse the repository at this point in the history
Automated version bump and other updates
  • Loading branch information
fabawi authored Feb 21, 2024
2 parents 871a5b7 + 3dddf38 commit 16fbcf3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion examples/encoders/numpy_pandas_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ def exchange_object(self, mware=None):
ret = {
"message": msg,
"numpy_array": np.ones((2, 4)),
"pandas_series": pd.Series([1, 3, 5, np.nan, 6, 8], dtype="float32" if pd.__version__ < "2.0" else "float32[pyarrow]"),
"pandas_series": pd.Series(
[1, 3, 5, np.nan, 6, 8],
dtype="float32" if pd.__version__ < "2.0" else "float32[pyarrow]",
),
"pandas_dataframe": pd.DataFrame(
np.random.randn(6, 4),
index=pd.date_range("20130101", periods=6),
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[project]
name = "wrapyfi"
version = "0.4.42"
version = "0.4.43"
description = "Wrapyfi is a wrapper for simplifying Middleware communication"
readme = "README.md"
authors = [
Expand Down

0 comments on commit 16fbcf3

Please sign in to comment.