Skip to content

Commit a402a09

Browse files
authored
chore: exclude azure-search-documents from license worfklow (#3268)
1 parent 1266327 commit a402a09

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/CI_license_compliance.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ name: Core / License Compliance
33
on:
44
pull_request:
55
paths:
6-
- "integrations/**/pyproject.toml"
7-
- ".github/workflows/CI_license_compliance.yml"
6+
- "integrations/**/pyproject.toml"
7+
- ".github/workflows/CI_license_compliance.yml"
88
# Since we test PRs, there is no need to run the workflow at each
99
# merge on `main`. Let's use a cron job instead.
1010
schedule:
1111
- cron: "0 0 * * *" # every day at midnight
1212

1313
env:
1414
PYTHON_VERSION: "3.10"
15-
EXCLUDE_PACKAGES: "(?i)^(azure-identity|fastembed|ragas|tqdm|psycopg|mistralai|pgvector).*"
15+
EXCLUDE_PACKAGES: "(?i)^(azure-identity|azure-search-documents|fastembed|tqdm|psycopg|mistralai|pgvector).*"
1616

1717
# Exclusions must be explicitly motivated
1818
#
1919
# - azure-identity is MIT but the license is not available on PyPI
20+
# - azure-search-documents is MIT but the license is not available on PyPI
2021
# - fastembed is Apache 2.0 but the license on PyPI is unclear ("Other/Proprietary License (Apache License)")
21-
# - ragas is Apache 2.0 but the license is not available on PyPI
2222
# - mistralai is Apache 2.0 but the license is not available on PyPI
2323
# - pgvector is MIT but the license is not available on PyPI
2424

0 commit comments

Comments
 (0)