Skip to content
This repository has been archived by the owner on Nov 3, 2022. It is now read-only.

Commit

Permalink
Prepare 1.0.8 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed May 30, 2019
1 parent 2c9b0f5 commit 3b180cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion keras_applications/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def correct_pad(backend, inputs, kernel_size):
return ((correct[0] - adjust[0], correct[0]),
(correct[1] - adjust[1], correct[1]))

__version__ = '1.0.7'
__version__ = '1.0.8'


from . import vgg16
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
'''

setup(name='Keras_Applications',
version='1.0.7',
version='1.0.8',
description='Reference implementations of popular deep learning models',
long_description=long_description,
author='Keras Team',
url='https://github.com/keras-team/keras-applications',
download_url='https://github.com/keras-team/'
'keras-applications/tarball/1.0.7',
'keras-applications/tarball/1.0.8',
license='MIT',
install_requires=['numpy>=1.9.1',
'h5py'],
Expand Down

0 comments on commit 3b180cb

Please sign in to comment.