Skip to content

Commit eb2c1fd

Browse files
committed
Prepare 2.2.1 release.
1 parent dd07a4c commit eb2c1fd

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

keras/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
from .models import Model
2424
from .models import Sequential
2525

26-
__version__ = '2.2.0'
26+
__version__ = '2.2.1'

keras/applications/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
keras_applications.set_keras_submodules(
1414
backend=backend,
15-
engine=engine,
1615
layers=layers,
1716
models=models,
1817
utils=utils)

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@
2424
'''
2525

2626
setup(name='Keras',
27-
version='2.2.0',
27+
version='2.2.1',
2828
description='Deep Learning for humans',
2929
long_description=long_description,
3030
author='Francois Chollet',
3131
author_email='[email protected]',
3232
url='https://github.com/keras-team/keras',
33-
download_url='https://github.com/keras-team/keras/tarball/2.2.0',
33+
download_url='https://github.com/keras-team/keras/tarball/2.2.1',
3434
license='MIT',
3535
install_requires=['numpy>=1.9.1',
3636
'scipy>=0.14',
3737
'six>=1.9.0',
3838
'pyyaml',
3939
'h5py',
40-
'keras_applications==1.0.2',
41-
'keras_preprocessing==1.0.1'],
40+
'keras_applications==1.0.4',
41+
'keras_preprocessing==1.0.2'],
4242
extras_require={
4343
'visualize': ['pydot>=1.2.4'],
4444
'tests': ['pytest',

0 commit comments

Comments
 (0)