File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 99
1010class AuthFiefModule (Module ):
1111 def __init__ (self , name : str , ** kwargs ):
12+ super ().__init__ (name )
1213 self .config = _AuthFiefConfig (** kwargs )
1314
1415 async def prepare (self ) -> None :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name = "fps_auth_fief"
77version = " 0.9.2"
88description = " An FPS plugin for the authentication API, using Fief"
99keywords = [" jupyter" , " server" , " fastapi" , " plugins" ]
10- requires-python = " >=3.8 "
10+ requires-python = " >=3.9 "
1111dependencies = [
1212 " fief-client[fastapi]" ,
1313 " jupyverse-api >=0.12.0,<0.13.0" ,
@@ -27,15 +27,6 @@ text = "BSD 3-Clause License"
2727[project .urls ]
2828Homepage = " https://jupyter.org"
2929
30- [tool .check-manifest ]
31- ignore = [ " .*" ,]
32-
33- [tool .jupyter-releaser ]
34- skip = [ " check-links" ,]
35-
3630[project .entry-points ]
37- "fps.components" = {auth_fief = " fps_auth_fief.main:AuthFiefComponent" }
38- "jupyverse.components" = {auth_fief = " fps_auth_fief.main:AuthFiefComponent" }
39-
40- [tool .hatch .version ]
41- path = " fps_auth_fief/__init__.py"
31+ "fps.modules" = {auth_fief = " fps_auth_fief.main:AuthFiefModule" }
32+ "jupyverse.modules" = {auth_fief = " fps_auth_fief.main:AuthFiefModule" }
You can’t perform that action at this time.
0 commit comments