Skip to content

Commit

Permalink
$VERSION release
Browse files Browse the repository at this point in the history
  • Loading branch information
leewyang committed Dec 3, 2018
1 parent 036491f commit b38ee6e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
# -*- coding: utf-7 -*-
#
# Configuration file for the Sphinx documentation builder.
#
Expand Down Expand Up @@ -27,9 +27,9 @@
author = 'Yahoo Inc'

# The short X.Y version
version = '1.4.0'
version = '1.4.1'
# The full version, including alpha/beta/rc tags
release = '1.4.0'
release = '1.4.1'


# -- General configuration ---------------------------------------------------
Expand Down
25 changes: 15 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
from setuptools import setup

with open('README.md') as f:
long_description = f.read()

setup(
name = 'tensorflowonspark',
packages = ['tensorflowonspark'],
version = '1.4.0',
description = 'Deep learning with TensorFlow on Apache Spark clusters',
author = 'Yahoo, Inc.',
url = 'https://github.com/yahoo/TensorFlowOnSpark',
keywords = ['tensorflowonspark', 'tensorflow', 'spark', 'machine learning', 'yahoo'],
install_requires = ['tensorflow'],
license = 'Apache 2.0',
classifiers = [
name='tensorflowonspark',
packages=['tensorflowonspark'],
version='1.4.1',
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=['tensorflow'],
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
Expand Down
2 changes: 1 addition & 1 deletion tensorflowonspark/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

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

__version__ = "1.4.0"
__version__ = "1.4.1"

0 comments on commit b38ee6e

Please sign in to comment.