diff --git a/VERSION b/VERSION index 8294c18..7693c96 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.2 \ No newline at end of file +0.1.3 \ No newline at end of file diff --git a/package.xml b/package.xml index 3cb6ebc..09deb36 100644 --- a/package.xml +++ b/package.xml @@ -3,7 +3,7 @@ ude Amazon Web Services - 0.1.2 + 0.1.3 UDE: A reinforcement learning environment virtualization framework. AWS DeepRacer Apache License 2.0 diff --git a/ude/serialization_context.py b/ude/serialization_context.py index 712e4ef..f456843 100644 --- a/ude/serialization_context.py +++ b/ude/serialization_context.py @@ -16,9 +16,11 @@ """A class to control custom classes serialization""" import threading from typing import Union - -# https://ray-project.github.io/2017/10/15/fast-python-serialization-with-ray-and-arrow.html -import pyarrow +import warnings +with warnings.catch_warnings(): + warnings.filterwarnings("ignore", category=DeprecationWarning) + # https://ray-project.github.io/2017/10/15/fast-python-serialization-with-ray-and-arrow.html + import pyarrow from gym.spaces.space import Space from gym.spaces.box import Box