Skip to content

Commit 38ccf58

Browse files
authored
Merge pull request #57 from auth0-samples/fix-authlib-package-version
Enforce authlib package min version
2 parents 1c70fb4 + 776d3a4 commit 38ccf58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

01-Login/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
flask
22
python-dotenv
33
requests
4-
authlib
4+
authlib>=0.14.1
55
six

01-Login/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from flask import render_template
1313
from flask import session
1414
from flask import url_for
15-
from authlib.flask.client import OAuth
15+
from authlib.integrations.flask_client import OAuth
1616
from six.moves.urllib.parse import urlencode
1717

1818
import constants

0 commit comments

Comments
 (0)