forked from jazzband/djangorestframework-simplejwt
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* library author update * added support for django 4.1 and python 3.10 * added support for django 4.1 and python 3.10 * Added doc dependencies * Doc files rearrangement * Made test coverage available on PRs * python-jose update
- Loading branch information
1 parent
7d5cd38
commit bfcb427
Showing
18 changed files
with
20 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ name = "ninja_jwt" | |
[project] | ||
name = "django-ninja-jwt" | ||
authors = [ | ||
{name = "David Sanders", email = "[email protected]"}, | ||
{name = "Ezeudoh Tochukwu", email = "[email protected]"}, | ||
] | ||
dynamic = ["version", "description"] | ||
|
@@ -34,13 +33,16 @@ classifiers = [ | |
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Framework :: Django", | ||
"Framework :: Django :: 2.1", | ||
"Framework :: Django :: 2.2", | ||
"Framework :: Django :: 3.0", | ||
"Framework :: Django :: 3.1", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.0", | ||
"Framework :: Django :: 4.1", | ||
"Framework :: AsyncIO", | ||
"Topic :: Internet :: WWW/HTTP :: HTTP Servers", | ||
"Topic :: Internet :: WWW/HTTP", | ||
|
@@ -69,8 +71,14 @@ test = [ | |
"isort==5.10.1", | ||
"flake8==4.0.1", | ||
"django-stubs", | ||
"python-jose==3.0.0", | ||
"python-jose==3.3.0", | ||
"click==8.0.4" | ||
] | ||
doc = [] | ||
doc = [ | ||
"mkdocs", | ||
"mkdocs-material", | ||
"markdown-include", | ||
"mdx-include >=1.4.1,<2.0.0", | ||
"mkdocs-markdownextradata-plugin >=0.1.7,<0.3.0", | ||
] | ||
|