Skip to content

Commit 35e47ab

Browse files
committed
1.0.4 version number update
1 parent 32d34a0 commit 35e47ab

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ For detailed tutorial, please check [here](https://autokeras.com/tutorial/overvi
3636
To install the package, please use the `pip` installation as follows:
3737

3838
```shell
39-
pip3 install git+https://github.com/keras-team/[email protected].2rc0
40-
pip3 install autokeras==1.0.3
39+
pip3 install git+https://github.com/keras-team/[email protected].2rc1
40+
pip3 install autokeras==1.0.4
4141
```
4242

4343
Please follow the [installation guide](https://autokeras.com/install) for more details.

autokeras/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
from autokeras.utils.utils import check_kt_version
4444
from autokeras.utils.utils import check_tf_version
4545

46-
__version__ = '1.0.4dev'
46+
__version__ = '1.0.4'
4747

4848
check_tf_version()
4949
check_kt_version()

docs/templates/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ AutoKeras only support **Python 3**.
1717
If you followed previous steps to use virtualenv to install tensorflow,
1818
you can just activate the virtualenv and use the following command to install AutoKeras.
1919
```
20-
pip install git+https://github.com/keras-team/[email protected].2rc0
21-
pip install autokeras==1.0.3
20+
pip install git+https://github.com/keras-team/[email protected].2rc1
21+
pip install autokeras==1.0.4
2222
```
2323

2424
If you did not use virtualenv, and you use `python3` command to execute your python program,
2525
please use the following command to install AutoKeras.
2626
```
27-
python3 -m pip install git+https://github.com/keras-team/[email protected].2rc0
28-
python3 -m pip install autokeras==1.0.3
27+
python3 -m pip install git+https://github.com/keras-team/[email protected].2rc1
28+
python3 -m pip install autokeras==1.0.4
2929
```
3030

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88

99
setup(
1010
name='autokeras',
11-
version='1.0.4dev',
11+
version='1.0.4',
1212
description='AutoML for deep learning',
1313
package_data={'': ['README.md']},
1414
long_description=readme.read_text(encoding='utf-8'),
1515
long_description_content_type='text/markdown',
1616
author='Data Analytics at Texas A&M (DATA) Lab, Keras Team',
1717
author_email='[email protected]',
1818
url='http://autokeras.com',
19-
download_url='https://github.com/keras-team/autokeras/archive/1.0.4dev.tar.gz',
19+
download_url='https://github.com/keras-team/autokeras/archive/1.0.4.tar.gz',
2020
keywords=['AutoML', 'Keras'],
2121
install_requires=[
2222
'packaging',

0 commit comments

Comments
 (0)