Skip to content

Commit 9005e9d

Browse files
committed
Fix invalid GPLv3 trove classifier
"License :: OSI Approved :: GNU General Public License v3" is not a valid trove classifier; the correct value per the trove-classifiers spec is "License :: OSI Approved :: GNU General Public License v3 (GPLv3)". This causes build failures for distribution package maintainers who use `python -m build --no-isolation`, which exposes the build to a system-installed validate-pyproject that enforces the classifier spec. Isolated builds are unaffected. Signed-off-by: Nils Le Roux <gilbsgilbert@gmail.com>
1 parent 71251a0 commit 9005e9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
"Intended Audience :: End Users/Desktop",
1717
"Topic :: Multimedia :: Sound/Audio",
1818
"Programming Language :: Python :: 3",
19-
"License :: OSI Approved :: GNU General Public License v3",
19+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2020
]
2121
dependencies = [
2222
"musicbrainzngs",

0 commit comments

Comments
 (0)