Skip to content

Commit 43334d8

Browse files
rstzcopybara-github
authored andcommitted
Prepare release of TF-DF 1.9.0rc0 and YDF 1.9.0rc0
PiperOrigin-RevId: 610665881
1 parent 0b04a64 commit 43334d8

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 1.9.0rc0 - 2024-02-26
4+
5+
### Fix
6+
7+
- Fix max_depth, early stopping parameter documentation.
8+
- Fix plotting contains conditions.
9+
10+
### Features
11+
12+
- Compatibility with TensorFlow 2.16.0rc0.
13+
- Using tf_keras instead tf.keras in examples, documentation.
14+
- Support NAConditions for fast engine.
15+
316
## 1.8.1 - 2023-11-17
417

518
### Fix

configure/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
from setuptools.command.install import install
2222
from setuptools.dist import Distribution
2323

24-
_VERSION = "1.8.1"
24+
_VERSION = "1.9.0rc0"
2525

2626
with open("README.md", "r", encoding="utf-8") as fh:
2727
long_description = fh.read()
2828

2929
REQUIRED_PACKAGES = [
3030
"numpy",
3131
"pandas",
32-
"tensorflow~=2.15.0",
32+
"tensorflow~=2.16.0rc0",
3333
"six",
3434
"absl_py",
3535
"wheel",

tensorflow_decision_forests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
5252
"""
5353

54-
__version__ = "1.8.1"
54+
__version__ = "1.9.0rc0"
5555
__author__ = "Mathieu Guillame-Bert"
5656

57-
compatible_tf_versions = ["2.15.0"]
57+
compatible_tf_versions = ["2.16.0rc0"]
5858
__git_version__ = "HEAD" # Modify for release build.
5959

6060
from tensorflow_decision_forests.tensorflow import check_version

tools/start_compile_docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# ./tools/build_pip_package.sh ALL_VERSIONS_ALREADY_ASSEMBLED
5959
#
6060
# https://hub.docker.com/r/tensorflow/build/tags?page=1
61-
DOCKER=tensorflow/build:2.15-python3.9
61+
DOCKER=tensorflow/build:2.16-python3.9
6262

6363
# Current directory
6464
# Useful if Yggdrasil Decision Forests is available locally in a neighbor

tools/test_bazel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#
2929
# Usage example
3030
#
31-
# RUN_TESTS=1 PY_VERSION=3.9 TF_VERSION=2.13.0 ./tools/test_bazel.sh
31+
# RUN_TESTS=1 PY_VERSION=3.9 TF_VERSION=2.15.0 ./tools/test_bazel.sh
3232

3333
set -vex
3434

0 commit comments

Comments
 (0)