File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,8 @@ def generate_licenses() -> list[License]:
128
128
elif package_name == "pyproject_hooks" :
129
129
text_url = "https://raw.githubusercontent.com/pypa/pyproject-hooks/v1.1.0/LICENSE" # noqa: B950
130
130
license_json ["LicenseText" ] = get_license_text (text_url )
131
+ elif package_name == "pywin32" :
132
+ continue # ライセンスファイルがリポジトリにない
131
133
elif package_name == "safetensors" :
132
134
text_url = "https://raw.githubusercontent.com/huggingface/safetensors/v0.4.3/LICENSE" # noqa: B950
133
135
license_json ["LicenseText" ] = get_license_text (text_url )
@@ -146,6 +148,8 @@ def generate_licenses() -> list[License]:
146
148
elif package_name == "types-pyyaml" :
147
149
text_url = "https://raw.githubusercontent.com/python/typeshed/57f3dcac8dbed008479b251512975901a0206deb/LICENSE" # noqa: B950
148
150
license_json ["LicenseText" ] = get_license_text (text_url )
151
+ elif package_name == "wmi" :
152
+ continue # ライセンスファイルがリポジトリにない
149
153
else :
150
154
# ライセンスがpypiに無い
151
155
raise Exception (f"No License info provided for { package_name } " )
You can’t perform that action at this time.
0 commit comments