Skip to content

Commit b38ee6e

Browse files
committed
$VERSION release
1 parent 036491f commit b38ee6e

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- coding: utf-7 -*-
22
#
33
# Configuration file for the Sphinx documentation builder.
44
#
@@ -27,9 +27,9 @@
2727
author = 'Yahoo Inc'
2828

2929
# The short X.Y version
30-
version = '1.4.0'
30+
version = '1.4.1'
3131
# The full version, including alpha/beta/rc tags
32-
release = '1.4.0'
32+
release = '1.4.1'
3333

3434

3535
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
from setuptools import setup
22

3+
with open('README.md') as f:
4+
long_description = f.read()
5+
36
setup(
4-
name = 'tensorflowonspark',
5-
packages = ['tensorflowonspark'],
6-
version = '1.4.0',
7-
description = 'Deep learning with TensorFlow on Apache Spark clusters',
8-
author = 'Yahoo, Inc.',
9-
url = 'https://github.com/yahoo/TensorFlowOnSpark',
10-
keywords = ['tensorflowonspark', 'tensorflow', 'spark', 'machine learning', 'yahoo'],
11-
install_requires = ['tensorflow'],
12-
license = 'Apache 2.0',
13-
classifiers = [
7+
name='tensorflowonspark',
8+
packages=['tensorflowonspark'],
9+
version='1.4.1',
10+
description='Deep learning with TensorFlow on Apache Spark clusters',
11+
long_description=long_description,
12+
long_description_content_type='text/markdown',
13+
author='Yahoo, Inc.',
14+
url='https://github.com/yahoo/TensorFlowOnSpark',
15+
keywords=['tensorflowonspark', 'tensorflow', 'spark', 'machine learning', 'yahoo'],
16+
install_requires=['tensorflow'],
17+
license='Apache 2.0',
18+
classifiers=[
1419
'Development Status :: 4 - Beta',
1520
'Intended Audience :: Developers',
1621
'Intended Audience :: Science/Research',

tensorflowonspark/__init__.py

Lines changed: 1 addition & 1 deletion
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__ = "1.4.0"
5+
__version__ = "1.4.1"

0 commit comments

Comments
 (0)