Skip to content

Commit

Permalink
Prepare 2.2.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Jul 27, 2018
1 parent dd07a4c commit eb2c1fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion keras/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
from .models import Model
from .models import Sequential

__version__ = '2.2.0'
__version__ = '2.2.1'
1 change: 0 additions & 1 deletion keras/applications/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

keras_applications.set_keras_submodules(
backend=backend,
engine=engine,
layers=layers,
models=models,
utils=utils)
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,21 @@
'''

setup(name='Keras',
version='2.2.0',
version='2.2.1',
description='Deep Learning for humans',
long_description=long_description,
author='Francois Chollet',
author_email='francois.chollet@gmail.com',
url='https://github.com/keras-team/keras',
download_url='https://github.com/keras-team/keras/tarball/2.2.0',
download_url='https://github.com/keras-team/keras/tarball/2.2.1',
license='MIT',
install_requires=['numpy>=1.9.1',
'scipy>=0.14',
'six>=1.9.0',
'pyyaml',
'h5py',
'keras_applications==1.0.2',
'keras_preprocessing==1.0.1'],
'keras_applications==1.0.4',
'keras_preprocessing==1.0.2'],
extras_require={
'visualize': ['pydot>=1.2.4'],
'tests': ['pytest',
Expand Down

0 comments on commit eb2c1fd

Please sign in to comment.