Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump py dependency and to version 2.1.16 #22

Merged
merged 2 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions propelauth_fastapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ def _handle_forbidden_exception(e: ForbiddenException, debug_mode: bool):
"fetch_custom_role_mappings",
"subscribe_org_to_role_mapping",
"resend_email_confirmation",
"fetch_pending_invites",
"logout_all_user_sessions",
],
)

Expand Down Expand Up @@ -252,4 +254,6 @@ def init_auth(
fetch_custom_role_mappings=auth.fetch_custom_role_mappings,
subscribe_org_to_role_mapping=auth.subscribe_org_to_role_mapping,
resend_email_confirmation=auth.resend_email_confirmation,
fetch_pending_invites=auth.fetch_pending_invites,
logout_all_user_sessions=auth.logout_all_user_sessions,
)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="propelauth-fastapi",
version="2.1.15",
version="2.1.16",
description="A FastAPI library for managing authentication, backed by PropelAuth",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -20,7 +20,7 @@
author="PropelAuth",
author_email="support@propelauth.com",
license="MIT",
install_requires=["propelauth-py==3.1.15", "requests"],
install_requires=["propelauth-py==3.1.16", "requests"],
setup_requires=pytest_runner,
tests_require=["pytest==4.4.1"],
test_suite="tests",
Expand Down
Loading