Forbid dependencies that have GPL* licenses.

This commit is contained in:
jcamiel 2022-11-23 15:21:10 +01:00
parent 65350a71bb
commit 18d66a1971
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC

View File

@ -18,7 +18,7 @@ def is_authorized(license: str) -> bool:
def is_forbidden(license: str) -> bool:
for l in ["GNU"]:
for l in ["GPL"]:
if l in license:
return True
return False