forked from keras-team/keras-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try requiring a miniumum version of keras
- Loading branch information
1 parent
78df6f5
commit 83f2604
Showing
8 changed files
with
40 additions
and
90 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
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 |
---|---|---|
|
@@ -38,17 +38,14 @@ def get_version(rel_path): | |
author_email="[email protected]", | ||
license="Apache License 2.0", | ||
install_requires=[ | ||
"keras>=3.4.0", | ||
"absl-py", | ||
"numpy", | ||
"packaging", | ||
"regex", | ||
"rich", | ||
"kagglehub", | ||
# Don't require tensorflow-text on MacOS, there are no binaries for ARM. | ||
# Also, we rely on tensorflow *transitively* through tensorflow-text. | ||
# This avoid a slowdown during `pip install keras-hub` where pip would | ||
# download many version of both libraries to find compatible versions. | ||
"tensorflow-text; platform_system != 'Darwin'", | ||
"tensorflow-text", | ||
], | ||
extras_require={ | ||
"extras": [ | ||
|