We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37c2763 commit 7e640abCopy full SHA for 7e640ab
1 file changed
.github/workflows/ci.yml
@@ -65,6 +65,11 @@ jobs:
65
run: |
66
python -m pip install -U pip
67
pip install "${TENSORFLOW_VERSION}"
68
+ # tf-nightly currently pulls in tb-nightly as a dependency. Bazel's
69
+ # source-tree tests must import TensorBoard from runfiles rather than
70
+ # from site-packages, otherwise tests that rely on local-only modules
71
+ # like `tensorboard.test` resolve against the installed wheel and fail.
72
+ pip uninstall -y tensorboard tb-nightly || true
73
if: matrix.tf_version_id != 'notf'
74
- name: 'Install Python dependencies'
75
0 commit comments