Skip to content

Commit

Permalink
Update trove classifiers to remove unsupported Python & Django versio…
Browse files Browse the repository at this point in the history
…ns and use Django SemVer major versions.
  • Loading branch information
FlipperPA committed Mar 29, 2022
1 parent 757dd16 commit 16ebee4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
2 changes: 1 addition & 1 deletion django_currentuser/db/models/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self, *args, **kwargs):
if self.on_update:
kwargs["editable"] = False
kwargs["blank"] = True

kwargs.update(self.defaults)
super(CurrentUserField, self).__init__(**kwargs)

Expand Down
13 changes: 3 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,13 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 3',
'Framework :: Django :: 4',
],
)

0 comments on commit 16ebee4

Please sign in to comment.