Skip to content

Commit

Permalink
RELEASE: 0.5.2 (#549)
Browse files Browse the repository at this point in the history
* RELEASE: 0.5.2

* BLD: disable too-many-function-args pylint

* BLD: built against 2.0.0
  • Loading branch information
facaiy authored Sep 30, 2019
1 parent 4b04a35 commit 1c6862e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build_deps/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# TensorFlow greater than this date is manylinux2010 compliant
tensorflow==2.0.0-rc1
tensorflow==2.0.0
2 changes: 1 addition & 1 deletion build_deps/requirements_gpu.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# TensorFlow greater than this date is manylinux2010 compliant
tensorflow-gpu==2.0.0-rc1
tensorflow-gpu==2.0.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@
if project_name == TFA_RELEASE:
# TODO: remove if-else condition when tf supports package consolidation.
if platform.system() == 'Linux':
REQUIRED_PACKAGES.append('tensorflow-gpu == 2.0.0-rc1')
REQUIRED_PACKAGES.append('tensorflow-gpu == 2.0.0')
else:
REQUIRED_PACKAGES.append('tensorflow == 2.0.0-rc1')
REQUIRED_PACKAGES.append('tensorflow == 2.0.0')
elif project_name == TFA_NIGHTLY:
# TODO: remove if-else condition when tf-nightly supports package consolidation.
if platform.system() == 'Linux':
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_addons/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# We follow Semantic Versioning (https://semver.org/)
_MAJOR_VERSION = '0'
_MINOR_VERSION = '5'
_PATCH_VERSION = '1'
_PATCH_VERSION = '2'

# When building releases, we can update this value on the release branch to
# reflect the current release candidate ('rc0', 'rc1') or, finally, the official
Expand Down
1 change: 1 addition & 0 deletions tools/ci_build/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ disable=design,
# TODO: remove not-callable when pylint can understand tf export paradigm
not-callable,
similarities,
too-many-function-args,
unsupported-assignment-operation,
useless-object-inheritance

Expand Down

0 comments on commit 1c6862e

Please sign in to comment.