This is an automated email from the ASF dual-hosted git repository.
ash pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 71de801 Ignore airflow/_vendor for building python API docs (#16270)
71de801 is described below
commit 71de801c18f8e8c302f08113b85f4ff1e98d4afe
Author: Ash Berlin-Taylor <[email protected]>
AuthorDate: Fri Jun 4 17:16:28 2021 +0100
Ignore airflow/_vendor for building python API docs (#16270)
On 3.6 it's slower than needed, but on Py 3.8 it causes a doc build
error (on a type comment of all things)
---
docs/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index 373132a..539ec05 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -594,7 +594,7 @@ if PACKAGE_NAME == 'apache-airflow':
# A list of patterns to ignore when finding files
autoapi_ignore = [
- 'airflow/configuration/',
+ '*/airflow/_vendor/*',
'*/example_dags/*',
'*/_internal*',
'*/node_modules/*',