Skip to content

Commit a6a615a

Browse files
Matthew FahrbachTensorFlow Recommenders Authors
authored andcommitted
Add 'tf-keras' (Keras 2) to requirements.txt and pip_install.sh.
PiperOrigin-RevId: 837268927
1 parent 80479d8 commit a6a615a

File tree

6 files changed

+11
-3
lines changed

6 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [unreleased][unreleased]
44

5+
## [0.7.6][2025-11-26]
6+
7+
### Changed
8+
9+
- Add `tf-keras` (Keras 2) to `requirements.txt` and `pip_install.sh`.
10+
511
## [0.7.5][2025-11-25]
612

713
### Changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
tensorflow >= 2.9.0; sys_platform != 'darwin'
22
tensorflow-macos >= 2.9.0; sys_platform == 'darwin'
33
absl-py >= 0.1.6
4+
tf-keras

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import pathlib
1818
import setuptools
1919

20-
VERSION = "0.7.5"
20+
VERSION = "0.7.6"
2121

2222
long_description = (
2323
pathlib.Path(__file__).parent.joinpath("README.md").read_text()

tensorflow_recommenders/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def _check_keras_version():
4646
del _check_keras_version
4747
# pylint: enable=g-statement-before-imports
4848

49-
__version__ = "v0.7.5"
49+
__version__ = "v0.7.6"
5050

5151
from tensorflow_recommenders import examples
5252
from tensorflow_recommenders import experimental

tensorflow_recommenders/public.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
internal google stuff.
2525
"""
2626

27-
__version__ = "v0.7.5"
27+
__version__ = "v0.7.6"
2828

2929
# This version does not include internal tfrs google library.
3030
from tensorflow_recommenders import examples

tools/build_scripts/pip_install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ python3.10 -m pip install --upgrade pip
2020
# Install TensorFlow.
2121
echo "Installing TensorFlow..."
2222
python3.10 -m pip install tensorflow
23+
python3.10 -m pip install -q tf-keras
2324
python3.10 -m pip install -q urllib3
2425

2526
# Install TensorFlow Recommenders.

0 commit comments

Comments
 (0)