stankiewicz opened a new issue, #33836: URL: https://github.com/apache/beam/issues/33836
### What happened? it looks like moving from beautifulsoup4-4.12.3 to beautifulsoup4-4.13.0 there is missing typing_extensions dependency. [good run](https://github.com/apache/beam/actions/runs/13097082593/job/36540654610) ``` Collecting beautifulsoup4<5.0,>=4.9.0 Downloading beautifulsoup4-4.12.3-py3-none-any.whl (147 kB) Collecting pyyaml<7,>=6.0.1 Downloading PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (746 kB) Collecting tenacity<9.0,>=6.1.0 Downloading tenacity-8.5.0-py3-none-any.whl (28 kB) Collecting soupsieve>1.2 Downloading soupsieve-2.6-py3-none-any.whl (36 kB) Installing collected packages: soupsieve, beautifulsoup4, pyyaml, tenacity Successfully installed beautifulsoup4-4.12.3 pyyaml-6.0.2 soupsieve-2.6 tenacity-8.5.0 ``` [bad run](https://github.com/apache/beam/actions/runs/13102165738/job/36551760596) ``` Collecting beautifulsoup4<5.0,>=4.9.0 Downloading beautifulsoup4-4.13.0-py3-none-any.whl (184 kB) Collecting pyyaml<7,>=6.0.1 Downloading PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (746 kB) Collecting tenacity<9.0,>=6.1.0 Downloading tenacity-8.5.0-py3-none-any.whl (28 kB) Collecting soupsieve>1.2 Downloading soupsieve-2.6-py3-none-any.whl (36 kB) Requirement already satisfied: typing-extensions in /home/runner/.local/lib/python3.8/site-packages/setuptools/_vendor (from beautifulsoup4<5.0,>=4.9.0->-r /runner/_work/beam/beam/sdks/java/container/license_scripts/requirement.txt (line 19)) (4.12.2) Installing collected packages: soupsieve, beautifulsoup4, pyyaml, tenacity Successfully installed beautifulsoup4-4.13.0 pyyaml-6.0.2 soupsieve-2.6 tenacity-8.5.0 Executing python /runner/_work/beam/beam/sdks/java/container/license_scripts/pull_licenses_java.py --license_index=/runner/_work/beam/beam/sdks/java/container/build/reports/dependency-license/index.json --output_dir=/runner/_work/beam/beam/sdks/java/container/build/target/java_third_party_licenses --dep_url_yaml=/runner/_work/beam/beam/sdks/java/container/license_scripts/dep_urls_java.yaml --manual_license_path=/runner/_work/beam/beam/sdks/java/container/license_scripts/manual_licenses --use_license_cache Traceback (most recent call last): File "/runner/_work/beam/beam/sdks/java/container/license_scripts/pull_licenses_java.py", line 33, in <module> from bs4 import BeautifulSoup File "/home/runner/.local/lib/python3.8/site-packages/bs4/__init__.py", line 64, in <module> from .builder import ( File "/home/runner/.local/lib/python3.8/site-packages/bs4/builder/__init__.py", line 24, in <module> from bs4.element import ( File "/home/runner/.local/lib/python3.8/site-packages/bs4/element.py", line 9, in <module> from bs4.css import CSS File "/home/runner/.local/lib/python3.8/site-packages/bs4/css.py", line 27, in <module> from bs4._typing import _NamespaceMapping File "/home/runner/.local/lib/python3.8/site-packages/bs4/_typing.py", line 16, in <module> from typing_extensions import ( ModuleNotFoundError: No module named 'typing_extensions' ``` ### Issue Priority Priority: 2 (default / most bugs should be filed as P2) ### Issue Components - [ ] Component: Python SDK - [ ] Component: Java SDK - [ ] Component: Go SDK - [ ] Component: Typescript SDK - [ ] Component: IO connector - [ ] Component: Beam YAML - [ ] Component: Beam examples - [ ] Component: Beam playground - [ ] Component: Beam katas - [ ] Component: Website - [x] Component: Infrastructure - [ ] Component: Spark Runner - [ ] Component: Flink Runner - [ ] Component: Samza Runner - [ ] Component: Twister2 Runner - [ ] Component: Hazelcast Jet Runner - [ ] Component: Google Cloud Dataflow Runner -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
