Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update hook-tensorflow.py #564

Merged
merged 3 commits into from
Mar 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news/564.update.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update the hook for ``tensorflow`` to be compatible with TensorFlow 2.12.
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@
# Exclude from data collection:
# - development headers in include subdirectory
# - XLA AOT runtime sources
# - libtensorflow_framework shared library (to avoid duplication)
# - libtensorflow_framework and libtensorflow_cc (since TF 2.12) shared libraries (to avoid duplication)
# - import library (.lib) files (Windows-only)
data_excludes = [
"include",
"xla_aot_runtime_src",
"libtensorflow_framework.*",
"libtensorflow_cc.*",
"**/*.lib",
]

Expand Down