Skip to content

Commit 59c6330

Browse files
committed
Fix Django classifiers
Getting an error when trying to upload as it stands: ERROR HTTPError: 400 Bad Request from https://upload.pypi.org/legacy/ 'Framework :: Django :: 5' is not a valid classifier. See https://packaging.python.org/specifications/core-metadata for more information.
1 parent a14f81d commit 59c6330

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ classifiers = [
2222
"Programming Language :: Python :: 3.12",
2323
"Programming Language :: Python :: 3 :: Only",
2424
"Framework :: Django",
25-
"Framework :: Django :: 3",
26-
"Framework :: Django :: 4",
27-
"Framework :: Django :: 5",
25+
"Framework :: Django :: 4.2",
26+
"Framework :: Django :: 5.0",
27+
"Framework :: Django :: 5.1",
2828
"Topic :: Internet :: WWW/HTTP",
2929
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
3030
]

0 commit comments

Comments
 (0)