Skip to content

Commit 3c1c846

Browse files
author
Weichen Shen
committed
Release v0.2.0
1 parent ba362cc commit 3c1c846

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

deepctr/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
from .import sequence
44
from . import models
55
from .utils import check_version
6-
__version__ = '0.2.0a'
6+
__version__ = '0.2.0'
77
check_version(__version__)

docs/source/History.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# History
2-
- 12/22/2018 : [v0.2.0a1](https://github.com/shenweichen/DeepCTR/releases/tag/v0.2.0a) released.Add [xDeepFM](./Features.html#xdeepfm) and automatic check for new version.
2+
- 12/22/2018 : [v0.2.0](https://github.com/shenweichen/DeepCTR/releases/tag/v0.2.0) released.Add [xDeepFM](./Features.html#xdeepfm) and automatic check for new version.
33
- 12/19/2018 : [v0.1.6](https://github.com/shenweichen/DeepCTR/releases/tag/v0.1.6) released.Now DeepCTR is compatible with tensorflow from `1.4-1.12` except for `1.7` and `1.8`.
44
- 29/11/2018 : [v0.1.4](https://github.com/shenweichen/DeepCTR/releases/tag/v0.1.4) released.Add [FAQ](./FAQ.html) in docs
55
- 11/24/2018 : DeepCTR first version v0.1.0 is released on [PyPi](https://pypi.org/project/deepctr/)

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = ''
2828
# The full version, including alpha/beta/rc tags
29-
release = '0.2.0a'
29+
release = '0.2.0'
3030

3131

3232
# -- General configuration ---------------------------------------------------

docs/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can read the latest code at https://github.com/shenweichen/DeepCTR
3636
News
3737
-----
3838

39-
12/22/2018 : Add `xDeepFM <./Features.html#xdeepfm>`_ and automatic check for new version. `Changelog <https://github.com/shenweichen/DeepCTR/releases/tag/v0.2.0a>`_
39+
12/22/2018 : Add `xDeepFM <./Features.html#xdeepfm>`_ and automatic check for new version. `Changelog <https://github.com/shenweichen/DeepCTR/releases/tag/v0.2.0>`_
4040

4141
12/19/2018 : DeepCTR is compatible with tensorflow from ``1.4-1.12`` except for ``1.7`` and ``1.8``. `Changelog <https://github.com/shenweichen/DeepCTR/releases/tag/v0.1.6>`_
4242

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
]
1010

1111
setuptools.setup(
12-
name="DeepCTR",
13-
version="0.2.0a",
12+
name="deepctr",
13+
version="0.2.0",
1414
author="Weichen Shen",
1515
author_email="[email protected]",
1616
description="Easy-to-use,Modular and Extendible package of deep learning based CTR(Click Through Rate) prediction models with tensorflow.",
1717
long_description=long_description,
1818
long_description_content_type="text/markdown",
1919
url="https://github.com/shenweichen/deepctr",
2020
download_url='https://github.com/shenweichen/deepctr/tags',
21-
packages=setuptools.find_packages(exclude=["tests"]),
21+
packages=setuptools.find_packages(exclude=["tests", "tests.models"]),
2222
python_requires='>=3.4.6',
2323
install_requires=REQUIRED_PACKAGES,
2424
extras_require={

0 commit comments

Comments
 (0)