Prepare new PyPI release.

This commit is contained in:
Francois Chollet 2017-04-29 16:18:54 -07:00
parent affaa77078
commit c627fa5bbd
2 changed files with 3 additions and 3 deletions

@ -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'

@ -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={