Skip to content

Commit

Permalink
Fix Django classifiers
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
browniebroke committed Oct 12, 2024
1 parent a14f81d commit 59c6330
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Framework :: Django",
"Framework :: Django :: 3",
"Framework :: Django :: 4",
"Framework :: Django :: 5",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
Expand Down

0 comments on commit 59c6330

Please sign in to comment.