rusackas commented on PR #33432:
URL: https://github.com/apache/superset/pull/33432#issuecomment-2891832436
It seems this is getting hung up by the dependency checker at:
`.github/workflows/dependency-review.yml`
Aggording to my buddy Claude, you can add a `licccheck.ini` file with this:
```
[Licenses]
authorized_licenses =
bsd
new bsd
bsd license
new bsd license
simplified bsd
apache
apache 2.0
apache software license
mit
python software foundation license
any-osi
```
and then tweak the action like so:
```
- name: "Set up liccheck"
run: |
uv pip install --system liccheck
- name: "Run liccheck"
run: |
# run the checks with the config file
liccheck -s liccheck.ini -R output.txt
# Print the report
cat output.txt
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]