Skip to content

Commit 776d3a4

Browse files
committed
enforce a min version for the authlib package
1 parent 1c70fb4 commit 776d3a4

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)