Skip to content

Commit

Permalink
Prepare for releasing v0.5.1 with small dependency changes to ensure …
Browse files Browse the repository at this point in the history
…compatibility with TensorFlow 2.5.

PiperOrigin-RevId: 373857786
  • Loading branch information
maciejkula authored and TensorFlow Recommenders Team committed May 14, 2021
1 parent b53ff34 commit baa16aa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [unreleased][unreleased]
## [0.5.1][2021-05-14]

### Changed

Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
tensorflow >= 2.3.0
absl-py >= 0.1.6
scann
11 changes: 3 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,7 @@
import pathlib
import setuptools

VERSION = "0.5.0"

REQUIRED_PACKAGES = [
"absl-py >= 0.1.6",
"tensorflow == 2.4.*",
]
VERSION = "0.5.1"

long_description = (pathlib.Path(__file__).parent
.joinpath("README.md")
Expand All @@ -38,12 +33,12 @@
author="Google Inc.",
author_email="[email protected]",
packages=setuptools.find_packages(),
install_requires=REQUIRED_PACKAGES,
install_requires=pathlib.Path("requirements.txt").read_text().splitlines(),
extras_require={
"docs": [
"fire",
"annoy",
"scann == 1.2.0",
"scann == 1.2.*",
],
},
# PyPI package information.
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_recommenders/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
you the flexibility to build complex models.
"""

__version__ = "v0.5.0"
__version__ = "v0.5.1"

from tensorflow_recommenders import examples
from tensorflow_recommenders import experimental
Expand Down

0 comments on commit baa16aa

Please sign in to comment.