Skip to content

Commit

Permalink
Prepare release of TF-DF 1.9.0rc0 and YDF 1.9.0rc0
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 610665881
  • Loading branch information
rstz authored and copybara-github committed Feb 27, 2024
1 parent 0b04a64 commit 43334d8
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 1.9.0rc0 - 2024-02-26

### Fix

- Fix max_depth, early stopping parameter documentation.
- Fix plotting contains conditions.

### Features

- Compatibility with TensorFlow 2.16.0rc0.
- Using tf_keras instead tf.keras in examples, documentation.
- Support NAConditions for fast engine.

## 1.8.1 - 2023-11-17

### Fix
Expand Down
4 changes: 2 additions & 2 deletions configure/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
from setuptools.command.install import install
from setuptools.dist import Distribution

_VERSION = "1.8.1"
_VERSION = "1.9.0rc0"

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

REQUIRED_PACKAGES = [
"numpy",
"pandas",
"tensorflow~=2.15.0",
"tensorflow~=2.16.0rc0",
"six",
"absl_py",
"wheel",
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_decision_forests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@
"""

__version__ = "1.8.1"
__version__ = "1.9.0rc0"
__author__ = "Mathieu Guillame-Bert"

compatible_tf_versions = ["2.15.0"]
compatible_tf_versions = ["2.16.0rc0"]
__git_version__ = "HEAD" # Modify for release build.

from tensorflow_decision_forests.tensorflow import check_version
Expand Down
2 changes: 1 addition & 1 deletion tools/start_compile_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# ./tools/build_pip_package.sh ALL_VERSIONS_ALREADY_ASSEMBLED
#
# https://hub.docker.com/r/tensorflow/build/tags?page=1
DOCKER=tensorflow/build:2.15-python3.9
DOCKER=tensorflow/build:2.16-python3.9

# Current directory
# Useful if Yggdrasil Decision Forests is available locally in a neighbor
Expand Down
2 changes: 1 addition & 1 deletion tools/test_bazel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#
# Usage example
#
# RUN_TESTS=1 PY_VERSION=3.9 TF_VERSION=2.13.0 ./tools/test_bazel.sh
# RUN_TESTS=1 PY_VERSION=3.9 TF_VERSION=2.15.0 ./tools/test_bazel.sh

set -vex

Expand Down

0 comments on commit 43334d8

Please sign in to comment.