Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Updated PyJWT version to 2.6.0 #152

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Apr 15, 2023

  1. Updated PyJWT version to 2.6.0

    As mentioned in the issue here: pallets-eco#147
    The PyJWT dependency used in current version of FlaskJWT seems to be using an older version of PyJWT that is causing following error:
    ImportError: cannot import name 'Mapping' from 'collections' 
    
    Upgraded the PyJWT version to use version 2.6.0 to resolve this issue
    AnuragBalhra authored Apr 15, 2023
    Configuration menu
    Copy the full SHA
    295be53 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from AnuragBalhra/Updated-PyJWT-version-to-2.6.0

    Updated PyJWT version to 2.6.0
    AnuragBalhra authored Apr 15, 2023
    Configuration menu
    Copy the full SHA
    f467d4d View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2023

  1. Added try catch to handle Attribute Error in Python 3

    Python 3 doesn't support str.decode method. 
    So, trying to decode access_token in python 3 raises following error:
    AttributeError: 'str' object has no attribute 'decode'
    
    Added try except block to prevent that.
    AnuragBalhra authored Apr 22, 2023
    Configuration menu
    Copy the full SHA
    aaaaa24 View commit details
    Browse the repository at this point in the history