Skip to content

Commit 9f3f0d1

Browse files
committed
Chore: Unpin beautifulsoup4
1 parent 3a37590 commit 9f3f0d1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"agate==1.7.1",
6666
f"apache-airflow=={os.environ.get('AIRFLOW_VERSION', '2.9.1')}",
6767
"opentelemetry-proto==1.27.0", # pip was having trouble resolving this transitive dependency of airflow
68-
"beautifulsoup4==4.12.3",
68+
"beautifulsoup4",
6969
"clickhouse-connect",
7070
"cryptography",
7171
"custom-materializations",

tests/integrations/jupyter/test_magics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ def convert_all_html_output_to_tags():
7777
def _convert_html_to_tags(html: str) -> t.List[str]:
7878
# BS4 automatically adds html and body tags so we remove those since they are not actually part of the output
7979
return [
80-
tag.name
80+
tag.name # type: ignore
8181
for tag in BeautifulSoup(html, "html").find_all()
82-
if tag.name not in {"html", "body"}
82+
if tag.name not in {"html", "body"} # type: ignore
8383
]
8484

8585
def _convert(output: CapturedIO) -> t.List[t.List[str]]:

0 commit comments

Comments
 (0)