diff --git a/docs/source/conf.py b/docs/source/conf.py
index 60f40fd6..04ca7b68 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -28,9 +28,9 @@
author = 'Yahoo Inc'
# The short X.Y version
-version = '2.1.2'
+version = '2.1.3'
# The full version, including alpha/beta/rc tags
-release = '2.1.2'
+release = '2.1.3'
# -- General configuration ---------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1f6df8b8..d3f47e53 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
4.0.0
com.yahoo.ml
tensorflowonspark
- 2.1.2-SNAPSHOT
+ 2.1.3-SNAPSHOT
jar
tensorflowonspark
Spark Scala inferencing for TensorFlowOnSpark
diff --git a/setup.py b/setup.py
index f746917b..cfb21597 100644
--- a/setup.py
+++ b/setup.py
@@ -6,13 +6,14 @@
setup(
name='tensorflowonspark',
packages=['tensorflowonspark'],
- version='2.1.2',
+ version='2.1.3',
description='Deep learning with TensorFlow on Apache Spark clusters',
long_description=long_description,
long_description_content_type='text/markdown',
author='Yahoo, Inc.',
url='https://github.com/yahoo/TensorFlowOnSpark',
keywords=['tensorflowonspark', 'tensorflow', 'spark', 'machine learning', 'yahoo'],
+ install_requires=['packaging'],
license='Apache 2.0',
classifiers=[
'Intended Audience :: Developers',
diff --git a/tensorflowonspark/__init__.py b/tensorflowonspark/__init__.py
index 7143697e..9ea9d171 100644
--- a/tensorflowonspark/__init__.py
+++ b/tensorflowonspark/__init__.py
@@ -2,4 +2,4 @@
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s (%(threadName)s-%(process)d) %(message)s")
-__version__ = "2.1.2"
+__version__ = "2.1.3"