Skip to content

Commit 260a1d5

Browse files
authored
Merge pull request #404 from mrhaleemkhan/master
Fixing issue related Flask 3 and oauthlib new version
2 parents d8369c8 + e58cea8 commit 260a1d5

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

flask_oauthlib/utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import base64
44
from flask import request, Response
5-
from oauthlib.common import to_unicode, bytes_type
5+
from oauthlib.common import to_unicode
66

77

88
def _get_uri_from_request(request):
@@ -31,7 +31,7 @@ def extract_params():
3131
# parsing, so we just replace the Authorization header with the extraced
3232
# info if it was successfully parsed.
3333
if request.authorization:
34-
headers['Authorization'] = request.authorization
34+
headers['Authorization'] = str(request.authorization)
3535

3636
body = request.form.to_dict()
3737
return uri, http_method, body, headers
@@ -41,7 +41,7 @@ def to_bytes(text, encoding='utf-8'):
4141
"""Make sure text is bytes type."""
4242
if not text:
4343
return text
44-
if not isinstance(text, bytes_type):
44+
if not isinstance(text, bytes):
4545
text = text.encode(encoding)
4646
return text
4747

requirements.txt

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
Flask>=0.12.3
1+
Flask==3.0.0
22
mock==2.0.0
3-
oauthlib==2.0.6
4-
requests-oauthlib==0.8.0
5-
Flask-SQLAlchemy==2.1
6-
cachelib==0.1.1
3+
oauthlib==3.2.2
4+
requests-oauthlib==1.3.1
5+
Flask-SQLAlchemy==3.1.1
6+
cachelib==0.10.2
7+

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def fread(filename):
4343
license='BSD',
4444
install_requires=[
4545
'Flask',
46-
'oauthlib>=1.1.2,!=2.0.3,!=2.0.4,!=2.0.5,<3.0.0',
47-
'requests-oauthlib>=0.6.2,<1.2.0',
46+
'oauthlib>=3.0.0,<3.2.2',
47+
'requests-oauthlib>=1.0,<1.3.1',
4848
'cachelib',
4949
],
5050
tests_require=['nose', 'Flask-SQLAlchemy', 'mock'],

0 commit comments

Comments
 (0)