From c627fa5bbdb37d9f196486b27b5cec7445ab7704 Mon Sep 17 00:00:00 2001 From: Francois Chollet Date: Sat, 29 Apr 2017 16:18:54 -0700 Subject: [PATCH] Prepare new PyPI release. --- keras/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/keras/__init__.py b/keras/__init__.py index 810aa70f7..424cdb648 100644 --- a/keras/__init__.py +++ b/keras/__init__.py @@ -20,4 +20,4 @@ from . import regularizers # Importable from root because it's technically not a layer from .layers import Input -__version__ = '2.0.3' +__version__ = '2.0.4' diff --git a/setup.py b/setup.py index 8fd6ea20d..21f8d3dba 100644 --- a/setup.py +++ b/setup.py @@ -3,12 +3,12 @@ from setuptools import find_packages setup(name='Keras', - version='2.0.3', + version='2.0.4', description='Deep Learning for Python', author='Francois Chollet', author_email='francois.chollet@gmail.com', url='https://github.com/fchollet/keras', - download_url='https://github.com/fchollet/keras/tarball/2.0.3', + download_url='https://github.com/fchollet/keras/tarball/2.0.4', license='MIT', install_requires=['theano', 'pyyaml', 'six'], extras_require={