Skip to content

Commit e000cf0

Browse files
vizmopytorchmergebot
authored andcommitted
Fix license metadata in setup.py (#129219)
Package metadata in setup.py lists license as BSD-3 which is not a valid SPDX id. The correct id would be BSD-3-Clause. Specifying an SPDX id is beneficial to license compliance scanning. *Taking up #129123 from my personal account.* Pull Request resolved: #129219 Approved by: https://github.com/malfet, https://github.com/kit1980
1 parent 4574301 commit e000cf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,7 @@ def main():
15071507
f"Programming Language :: Python :: 3.{i}"
15081508
for i in range(python_min_version[1], version_range_max)
15091509
],
1510-
license="BSD-3",
1510+
license="BSD-3-Clause",
15111511
keywords="pytorch, machine learning",
15121512
)
15131513
if EMIT_BUILD_WARNING:

0 commit comments

Comments
 (0)