Skip to content

Commit

Permalink
Merge pull request #691 from yuvipanda/nomook
Browse files Browse the repository at this point in the history
Remove the okpy authenticator as it is no longer used
  • Loading branch information
GeorgianaElena authored Oct 9, 2023
2 parents c62b453 + ac728ac commit 2fa1c48
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 173 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugged in and used with JupyterHub.
The following authentication services are supported through their own authenticator: [Auth0](oauthenticator/auth0.py),
[Azure AD](oauthenticator/azuread.py), [Bitbucket](oauthenticator/bitbucket.py), [CILogon](oauthenticator/cilogon.py), [FeiShu](https://github.com/tezignlab/jupyterhub_feishu_authenticator),
[GitHub](oauthenticator/github.py), [GitLab](oauthenticator/gitlab.py), [Globus](oauthenticator/globus.py),
[Google](oauthenticator/google.py), [MediaWiki](oauthenticator/mediawiki.py), [Okpy](oauthenticator/okpy.py),
[Google](oauthenticator/google.py), [MediaWiki](oauthenticator/mediawiki.py),
[OpenShift](oauthenticator/openshift.py).

There is also a [GenericAuthenticator](oauthenticator/generic.py)
Expand Down
1 change: 0 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ def setup(app):
"api/gen/oauthenticator.gitlab": "reference/api/gen/oauthenticator.gitlab",
"api/gen/oauthenticator.globus": "reference/api/gen/oauthenticator.globus",
"api/gen/oauthenticator.google": "reference/api/gen/oauthenticator.google",
"api/gen/oauthenticator.okpy": "reference/api/gen/oauthenticator.okpy",
"api/gen/oauthenticator.openshift": "reference/api/gen/oauthenticator.openshift",
"api/gen/oauthenticator.mediawiki": "reference/api/gen/oauthenticator.mediawiki",
# 2023-06-29 docs refresh
Expand Down
1 change: 0 additions & 1 deletion docs/source/tutorials/provider-specific-setup/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ providers/gitlab.md
providers/globus.md
providers/google.md
providers/mediawiki.md
providers/okpy.md
providers/openshift.md
providers/generic.md
```
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ When you register the application, make sure _Native App_ is unchecked and that
Your `jupyterhub_config.py` file should look something like this:

```python
c.JupyterHub.authenticator_class = "okpy"
c.JupyterHub.authenticator_class = "globus"
c.OAuthenticator.oauth_callback_url = "https://[your-domain]/hub/oauth_callback"
c.OAuthenticator.client_id = "[your oauth2 application id]"
c.OAuthenticator.client_secret = "[your oauth2 application secret]"
Expand Down
25 changes: 0 additions & 25 deletions docs/source/tutorials/provider-specific-setup/providers/okpy.md

This file was deleted.

49 changes: 0 additions & 49 deletions oauthenticator/okpy.py

This file was deleted.

93 changes: 0 additions & 93 deletions oauthenticator/tests/test_okpy.py

This file was deleted.

2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ def run(self):
'google = oauthenticator.google:GoogleOAuthenticator',
'local-google = oauthenticator.google:LocalGoogleOAuthenticator',
'mediawiki = oauthenticator.mediawiki:MWOAuthenticator',
'okpy = oauthenticator.okpy:OkpyOAuthenticator',
'local-okpy = oauthenticator.okpy:LocalOkpyOAuthenticator',
'openshift = oauthenticator.openshift:OpenShiftOAuthenticator',
'local-openshift = oauthenticator.openshift:LocalOpenShiftOAuthenticator',
],
Expand Down

0 comments on commit 2fa1c48

Please sign in to comment.