gothinkster / flask-realworld-example-app

Exemplary real world JSON API built with Flask (Python)
https://realworld.io/
MIT License
897 stars 308 forks source link

Package in requirements.txt should specify correspond version #44

Open lgthbo opened 3 years ago

lgthbo commented 3 years ago

As title,

This two package "PyJWT" and "Flask-JWT-Extended" cause some error due to some version update.

Modify below lines in /requirements/prod.txt fix the problem.

PyJWT=1.7.1
Flask-JWT-Extended=3.0

Maybe other package also need to specify correspond version to prevent some bug occur in future.

moribellamy commented 3 years ago

confirmed this is an issue, thanks for the fix