kaxil commented on code in PR #51153:
URL: https://github.com/apache/airflow/pull/51153#discussion_r2132762014
##########
devel-common/src/docs/build_docs.py:
##########
@@ -197,6 +197,16 @@ def
perform_spell_check_for_single_package(build_specification: BuildSpecificati
"""Performs single package spell check."""
builder = AirflowDocsBuilder(package_name=build_specification.package_name)
builder.is_autobuild = build_specification.is_autobuild
+ if build_specification.package_name == "task-sdk":
+ console.print(
+ f"[bright_blue]{build_specification.package_name:60}:[/] Skipping
spelling check (not supported)"
Review Comment:
Add the following env var:
```
export PYENCHANT_LIBRARY_PATH=$(brew --prefix enchant)/lib/libenchant-2.dylib
```
if you install using brew:
```
brew update
brew install enchant
```
##########
devel-common/src/docs/build_docs.py:
##########
@@ -197,6 +197,16 @@ def
perform_spell_check_for_single_package(build_specification: BuildSpecificati
"""Performs single package spell check."""
builder = AirflowDocsBuilder(package_name=build_specification.package_name)
builder.is_autobuild = build_specification.is_autobuild
+ if build_specification.package_name == "task-sdk":
+ console.print(
+ f"[bright_blue]{build_specification.package_name:60}:[/] Skipping
spelling check (not supported)"
Review Comment:
Add the following env var:
```shell
export PYENCHANT_LIBRARY_PATH=$(brew --prefix enchant)/lib/libenchant-2.dylib
```
if you install using brew:
```shell
brew update
brew install enchant
```
--
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]