From 3dddf3825a56d4b59d003986f13bcbff5b57c8c2 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Wed, 21 Feb 2024 16:27:14 +0000 Subject: [PATCH] Automated version bump and other updates --- examples/encoders/numpy_pandas_example.py | 5 ++++- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/examples/encoders/numpy_pandas_example.py b/examples/encoders/numpy_pandas_example.py index 6eaea2d..bed5485 100755 --- a/examples/encoders/numpy_pandas_example.py +++ b/examples/encoders/numpy_pandas_example.py @@ -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), diff --git a/pyproject.toml b/pyproject.toml index d347eed..09e386c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [