This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 1844f82 Add dependency comment in streaming cache
new ad91850 Merge pull request #11172 from Add dependency comment in
streaming cache
1844f82 is described below
commit 1844f8249cece1b567b30944fd9a0b027113dc9b
Author: Sam Rohde <[email protected]>
AuthorDate: Thu Mar 19 11:50:29 2020 -0700
Add dependency comment in streaming cache
Change-Id: I203c237147dee2948004b5711c55367aa16aa8f0
---
sdks/python/apache_beam/runners/interactive/caching/streaming_cache.py | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/sdks/python/apache_beam/runners/interactive/caching/streaming_cache.py
b/sdks/python/apache_beam/runners/interactive/caching/streaming_cache.py
index 17d8a5f..52c9997 100644
--- a/sdks/python/apache_beam/runners/interactive/caching/streaming_cache.py
+++ b/sdks/python/apache_beam/runners/interactive/caching/streaming_cache.py
@@ -37,6 +37,9 @@ from apache_beam.testing.test_stream import OutputFormat
from apache_beam.testing.test_stream import ReverseTestStream
from apache_beam.utils import timestamp
+# We don't have an explicit pathlib dependency because this code only works
with
+# the interactive target installed which has an indirect dependency on pathlib
+# and pathlib2 through ipython>=5.9.0.
try:
from pathlib import Path
except ImportError: