Skip to content

Commit

Permalink
Prepare 2.0.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Nov 1, 2017
1 parent bfa7dca commit c25e06f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions keras/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
from . import losses
from . import optimizers
from . import regularizers
# Importable from root because it's technically not a layer

# Also importable from root
from .layers import Input
from .models import Model
from .models import Sequential

__version__ = '2.0.8'
__version__ = '2.0.9'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@


setup(name='Keras',
version='2.0.8',
version='2.0.9',
description='Deep Learning for Python',
author='Francois Chollet',
author_email='[email protected]',
url='https://github.com/fchollet/keras',
download_url='https://github.com/fchollet/keras/tarball/2.0.8',
download_url='https://github.com/fchollet/keras/tarball/2.0.9',
license='MIT',
install_requires=['numpy>=1.9.1',
'scipy>=0.14',
Expand Down

0 comments on commit c25e06f

Please sign in to comment.