Skip to content

Commit f20da73

Browse files
Adding more details on separator Args for CSVlogger
PiperOrigin-RevId: 580663790
1 parent 3951224 commit f20da73

File tree

3 files changed

+2
-89
lines changed

3 files changed

+2
-89
lines changed

.github/workflows/auto-assignment.yaml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/scripts/auto-assignment.js

Lines changed: 0 additions & 60 deletions
This file was deleted.

pip_build.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -447,17 +447,14 @@ def test_wheel(wheel_path, expected_version, requirements_path):
447447
"tf_keras.experimental",
448448
]
449449
checks = ";".join(symbols_to_check)
450-
# Use Env var `TENSORFLOW_VERSION` for specific TF version to use in release
451-
# Uninstall `keras` after installing requirements
450+
# Uninstall `keras-nightly` after installing requirements
452451
# otherwise both will register `experimentalOptimizer` and test will fail.
453452
script = (
454453
"#!/bin/bash\n"
455454
"virtualenv kenv\n"
456455
f"source {os.path.join('kenv', 'bin', 'activate')}\n"
457456
f"pip3 install -r {requirements_path}\n"
458-
"pip3 uninstall -y tensorflow tf-nightly\n"
459-
'pip3 install "${TENSORFLOW_VERSION:-tf-nightly}"\n'
460-
"pip3 uninstall -y keras keras-nightly\n"
457+
"pip3 uninstall -y keras-nightly\n"
461458
f"pip3 install {wheel_path} --force-reinstall\n"
462459
f"python3 -c 'import tf_keras;{checks};print(tf_keras.__version__)'\n"
463460
)

0 commit comments

Comments
 (0)