Skip to content

Commit ea30a89

Browse files
committed
update version to 1.0.5
1 parent 47cae9d commit ea30a89

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ To install the package, please use the `pip` installation as follows:
3737

3838
```shell
3939
pip3 install git+https://github.com/keras-team/[email protected]
40-
pip3 install autokeras==1.0.4
40+
pip3 install autokeras==1.0.5
4141
```
4242

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

45-
**Note:** Currently, AutoKeras is only compatible with **Python >= 3.5** and **TensorFlow >= 2.2.0**.
45+
**Note:** Currently, AutoKeras is only compatible with **Python >= 3.5** and **TensorFlow >= 2.3.0**.
4646

4747
## Community
4848
<p float="left">
@@ -115,4 +115,4 @@ appreciated.
115115

116116
## Acknowledgements
117117

118-
The authors gratefully acknowledge the D3M program of the Defense Advanced Research Projects Agency (DARPA) administered through AFRL contract FA8750-17-2-0116; the Texas A&M College of Engineering, and Texas A&M.
118+
The authors gratefully acknowledge the D3M program of the Defense Advanced Research Projects Agency (DARPA) administered through AFRL contract FA8750-17-2-0116; the Texas A&M College of Engineering, and Texas A&M University.

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.5dev'
46+
__version__ = '1.0.5'
4747

4848
check_tf_version()
4949
check_kt_version()

docs/templates/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
**Pip**: Follow the TensorFlow install steps to install Pip.
66

7-
**Tensorflow >= 2.2.0**: AutoKeras is based on TensorFlow.
7+
**Tensorflow >= 2.3.0**: AutoKeras is based on TensorFlow.
88
Please follow
99
[this tutorial](https://www.tensorflow.org/install/pip) to install TensorFlow for python3.
1010

@@ -18,13 +18,13 @@ 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
```
2020
pip install git+https://github.com/keras-team/[email protected]
21-
pip install autokeras==1.0.4
21+
pip install autokeras==1.0.5
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
```
2727
python3 -m pip install git+https://github.com/keras-team/[email protected]
28-
python3 -m pip install autokeras==1.0.4
28+
python3 -m pip install autokeras==1.0.5
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.5dev',
11+
version='1.0.5',
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.4.tar.gz',
19+
download_url='https://github.com/keras-team/autokeras/archive/1.0.5.tar.gz',
2020
keywords=['AutoML', 'Keras'],
2121
install_requires=[
2222
'packaging',

0 commit comments

Comments
 (0)