Skip to content

Commit 1c6862e

Browse files
authored
RELEASE: 0.5.2 (#549)
* RELEASE: 0.5.2 * BLD: disable too-many-function-args pylint * BLD: built against 2.0.0
1 parent 4b04a35 commit 1c6862e

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

build_deps/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# TensorFlow greater than this date is manylinux2010 compliant
2-
tensorflow==2.0.0-rc1
2+
tensorflow==2.0.0

build_deps/requirements_gpu.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# TensorFlow greater than this date is manylinux2010 compliant
2-
tensorflow-gpu==2.0.0-rc1
2+
tensorflow-gpu==2.0.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
if project_name == TFA_RELEASE:
7070
# TODO: remove if-else condition when tf supports package consolidation.
7171
if platform.system() == 'Linux':
72-
REQUIRED_PACKAGES.append('tensorflow-gpu == 2.0.0-rc1')
72+
REQUIRED_PACKAGES.append('tensorflow-gpu == 2.0.0')
7373
else:
74-
REQUIRED_PACKAGES.append('tensorflow == 2.0.0-rc1')
74+
REQUIRED_PACKAGES.append('tensorflow == 2.0.0')
7575
elif project_name == TFA_NIGHTLY:
7676
# TODO: remove if-else condition when tf-nightly supports package consolidation.
7777
if platform.system() == 'Linux':

tensorflow_addons/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# We follow Semantic Versioning (https://semver.org/)
2121
_MAJOR_VERSION = '0'
2222
_MINOR_VERSION = '5'
23-
_PATCH_VERSION = '1'
23+
_PATCH_VERSION = '2'
2424

2525
# When building releases, we can update this value on the release branch to
2626
# reflect the current release candidate ('rc0', 'rc1') or, finally, the official

tools/ci_build/pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ disable=design,
7070
# TODO: remove not-callable when pylint can understand tf export paradigm
7171
not-callable,
7272
similarities,
73+
too-many-function-args,
7374
unsupported-assignment-operation,
7475
useless-object-inheritance
7576

0 commit comments

Comments
 (0)