Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Added a package deprecation message (#264)
Browse files Browse the repository at this point in the history
* Added a package deprecation message

* Updated the version
  • Loading branch information
karan6181 authored Jul 1, 2020
1 parent 0951e97 commit 3703e0e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Keras: Deep Learning for humans
## NOTE: MXNet support in Keras is going to be discontinued and v2.2.4.3 is the last release as [multi-backend](https://github.com/keras-team/keras#multi-backend-keras-and-tfkeras) Keras has been discontinued . It is recommended to consider switching to [MXNet Gluon](https://mxnet.apache.org/api/python/docs/tutorials/packages/gluon/index.html). MXNet Gluon is a high level, easy to use and performant deep learning framework that has all the features in Keras-MXNet and more.

# Keras: Deep Learning for humans

![Keras logo](https://s3.amazonaws.com/keras.io/img/keras-logo-2018-large-1200.png)

Expand Down
8 changes: 7 additions & 1 deletion keras/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,10 @@
from .models import Model
from .models import Sequential

__version__ = '2.2.4.2'
import warnings
warnings.warn("MXNet support in Keras is going to be discontinued and v2.2.4.3 is the last "
"release as multi-backend Keras has been discontinued . It is recommended to "
"consider switching to MXNet Gluon. More information can be found here: "
"https://github.com/awslabs/keras-apache-mxnet", DeprecationWarning)

__version__ = '2.2.4.3'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'''

setup(name='keras-mxnet',
version='2.2.4.2',
version='2.2.4.3',
description='Deep Learning for humans. Keras with highly scalable,\
high performance Apache MXNet backend support.',
long_description=long_description,
Expand Down

0 comments on commit 3703e0e

Please sign in to comment.