From 018e55be7c77f168abaea898233ccec035bb39d0 Mon Sep 17 00:00:00 2001 From: Francois Chollet Date: Tue, 14 Nov 2017 13:40:18 -0800 Subject: [PATCH] Prepare 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 130ea4c02b9..8292965bc18 100644 --- a/keras/__init__.py +++ b/keras/__init__.py @@ -23,4 +23,4 @@ from .models import Model from .models import Sequential -__version__ = '2.1.0' +__version__ = '2.1.1' diff --git a/setup.py b/setup.py index bdb1b13ae41..9d4ffa8f049 100644 --- a/setup.py +++ b/setup.py @@ -3,12 +3,12 @@ setup(name='Keras', - version='2.1.0', + version='2.1.1', 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.1.0', + download_url='https://github.com/fchollet/keras/tarball/2.1.1', license='MIT', install_requires=['numpy>=1.9.1', 'scipy>=0.14',