Skip to content

Commit 09628a7

Browse files
authoredJan 21, 2020
Merge pull request #497 from yahoo/leewyang_v2.1.3
prepare v2.1.3 release
2 parents 28c03b0 + 6e36b85 commit 09628a7

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed
 

‎docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
author = 'Yahoo Inc'
2929

3030
# The short X.Y version
31-
version = '2.1.2'
31+
version = '2.1.3'
3232
# The full version, including alpha/beta/rc tags
33-
release = '2.1.2'
33+
release = '2.1.3'
3434

3535

3636
# -- General configuration ---------------------------------------------------

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.yahoo.ml</groupId>
77
<artifactId>tensorflowonspark</artifactId>
8-
<version>2.1.2-SNAPSHOT</version>
8+
<version>2.1.3-SNAPSHOT</version>
99
<packaging>jar</packaging>
1010
<name>tensorflowonspark</name>
1111
<description>Spark Scala inferencing for TensorFlowOnSpark</description>

‎setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66
setup(
77
name='tensorflowonspark',
88
packages=['tensorflowonspark'],
9-
version='2.1.2',
9+
version='2.1.3',
1010
description='Deep learning with TensorFlow on Apache Spark clusters',
1111
long_description=long_description,
1212
long_description_content_type='text/markdown',
1313
author='Yahoo, Inc.',
1414
url='https://github.com/yahoo/TensorFlowOnSpark',
1515
keywords=['tensorflowonspark', 'tensorflow', 'spark', 'machine learning', 'yahoo'],
16+
install_requires=['packaging'],
1617
license='Apache 2.0',
1718
classifiers=[
1819
'Intended Audience :: Developers',

‎tensorflowonspark/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s (%(threadName)s-%(process)d) %(message)s")
44

5-
__version__ = "2.1.2"
5+
__version__ = "2.1.3"

0 commit comments

Comments
 (0)
Please sign in to comment.