-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare release of TF-DF 1.9.0 and update installation instructions
PiperOrigin-RevId: 615495475
- Loading branch information
1 parent
632d813
commit 7d9a245
Showing
10 changed files
with
263 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,20 +21,20 @@ | |
from setuptools.command.install import install | ||
from setuptools.dist import Distribution | ||
|
||
_VERSION = "1.9.0rc0" | ||
_VERSION = "1.9.0" | ||
|
||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
REQUIRED_PACKAGES = [ | ||
"numpy", | ||
"pandas", | ||
"tensorflow~=2.16.0rc0", | ||
"tensorflow~=2.16.1", | ||
"six", | ||
"absl_py", | ||
"wheel", | ||
"wurlitzer", | ||
"tf_keras~=2.16.0rc2", | ||
"tf_keras~=2.16", | ||
] | ||
|
||
|
||
|
@@ -84,8 +84,10 @@ def get_tag(self): | |
name="tensorflow_decision_forests", | ||
version=_VERSION, | ||
author="Google Inc.", | ||
author_email="[email protected]", | ||
description="Collection of training and inference decision forest algorithms.", | ||
author_email="[email protected]", | ||
description=( | ||
"Collection of training and inference decision forest algorithms." | ||
), | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/tensorflow/decision-forests", | ||
|
@@ -113,7 +115,10 @@ def get_tag(self): | |
packages=setuptools.find_packages(), | ||
python_requires=">=3.9", | ||
license="Apache 2.0", | ||
keywords="tensorflow tensor machine learning decision forests random forest gradient boosted decision trees", | ||
keywords=( | ||
"tensorflow tensor machine learning decision forests random forest" | ||
" gradient boosted decision trees" | ||
), | ||
install_requires=REQUIRED_PACKAGES, | ||
include_package_data=True, | ||
zip_safe=False, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.