Skip to content

Commit a50dbc1

Browse files
committed
update versioning mechanism
1 parent d9f804e commit a50dbc1

File tree

3 files changed

+3
-19
lines changed

3 files changed

+3
-19
lines changed

autokeras/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
from autokeras.utils.utils import check_kt_version
6666
from autokeras.utils.utils import check_tf_version
6767

68-
__version__ = "1.0.16"
68+
__version__ = "master"
6969

7070
check_tf_version()
7171
check_kt_version()

setup.cfg

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
11
[metadata]
2-
name = autokeras
3-
summary = AutoKeras provides functions to automatically search for architecture and hyperparameters of deep learning models.
4-
license = MIT
5-
description-file = README.md
6-
classifier =
7-
Development Status :: 3 - Alpha
8-
Programming Language :: Python
9-
Programming Language :: Python :: 3.6
10-
Operating System :: Unix
11-
Operating System :: Microsoft :: Windows
12-
Operating System :: MacOS
13-
Intended Audience :: Science/Research
14-
Topic :: Scientific/Engineering
15-
Topic :: Software Development
2+
version = attr: autokeras.__version__
163

174
[isort]
185
known_first_party = autokeras,tests

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@
88

99
setup(
1010
name="autokeras",
11-
version="1.0.16",
1211
description="AutoML for deep learning",
1312
package_data={"": ["README.md"]},
1413
long_description=readme.read_text(encoding="utf-8"),
1514
long_description_content_type="text/markdown",
1615
author="Data Analytics at Texas A&M (DATA) Lab, Keras Team",
1716
author_email="jhfjhfj1@gmail.com",
1817
url="http://autokeras.com",
19-
download_url="https://github.com/keras-team/autokeras/archive/1.0.16.tar.gz",
2018
keywords=["AutoML", "Keras"],
2119
install_requires=[
2220
"packaging",
@@ -43,14 +41,13 @@
4341
"Intended Audience :: Education",
4442
"Intended Audience :: Science/Research",
4543
"License :: OSI Approved :: Apache Software License",
46-
"Programming Language :: Python :: 3.5",
4744
"Programming Language :: Python :: 3.6",
4845
"Programming Language :: Python :: 3.7",
4946
"Programming Language :: Python :: 3.8",
5047
"Topic :: Scientific/Engineering :: Mathematics",
5148
"Topic :: Software Development :: Libraries :: Python Modules",
5249
"Topic :: Software Development :: Libraries",
5350
],
54-
license="MIT",
51+
license="Apache License 2.0",
5552
packages=find_packages(exclude=("tests",)),
5653
)

0 commit comments

Comments
 (0)