Skip to content

Commit 344a59b

Browse files
Chenzo1001razvanculea
authored andcommitted
Fix the beam interactive install problem when on Google Colab (apache#35148)
* Fix Google Colab Issue * Update CHANGES.md
1 parent 94b9032 commit 344a59b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
* [Python] Fixed vLLM breaks dataflow logging. ([35053](https://github.com/apache/beam/pull/35053))
106106
* [Python] Fixed vLLM leaks connections causing a throughput bottleneck and underutilization of GPU ([35053](https://github.com/apache/beam/pull/35053))
107107
* (Python) Fixed cloudpickle overwriting class states every time loading a same object of dynamic class ([#35062](https://github.com/apache/beam/issues/35062)).
108+
* [Python] Fixed pip install apache-beam[interactive] causes crash on google colab ([#35148](https://github.com/apache/beam/pull/35148)).
108109

109110
## Security Fixes
110111
* Fixed [CVE-YYYY-NNNN](https://www.cve.org/CVERecord?id=CVE-YYYY-NNNN) (Java/Python/Go) ([#X](https://github.com/apache/beam/issues/X)).

sdks/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ def get_portability_package_data():
474474
'interactive': [
475475
'facets-overview>=1.1.0,<2',
476476
'google-cloud-dataproc>=5.0.0,<6',
477-
'ipython>=8,<9',
477+
'ipython>=7,<9',
478478
'ipykernel>=6,<7',
479479
'ipywidgets>=8,<9',
480480
# Skip version 6.1.13 due to

0 commit comments

Comments
 (0)