Skip to content

Commit 9840ddb

Browse files
SinaChavoshiTensorflow Cloud maintainers
authored and
Tensorflow Cloud maintainers
committed
post release clean up.
PiperOrigin-RevId: 381387422
1 parent 02c8e1a commit 9840ddb

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

Diff for: RELEASE.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
* Add notes for next release here.
44

5+
# Release 0.1.16
6+
7+
* Dump Python stack when Segmentation fault occurs during remote environment.
8+
9+
# Release 0.1.15
10+
11+
* Update API documentation.
12+
513
# Release 0.1.14
614

715
* Remove upper bound dependency on `tensorflow_datasets`.

Diff for: src/python/tensorflow_cloud/core/preprocess.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ def get_preprocessed_entry_point(
216216
if not (
217217
line.strip().startswith("!") or
218218
line.strip().startswith("%") or
219-
line.strip().startswith("#")
219+
line.strip().startswith("#") or
220+
line.strip().startswith("get_ipython().system(")
220221
):
221222
script_lines.append(line)
222223

Diff for: src/python/tensorflow_cloud/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414
"""Contains the version string of TensorFlow Cloud."""
1515

16-
__version__ = "0.1.15.dev"
16+
__version__ = "0.1.17.dev"

0 commit comments

Comments
 (0)