We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a141464 commit 7484320Copy full SHA for 7484320
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Change Log
2
3
+## [1.0.2] 2022-06-07
4
+### Improvements
5
+
6
+- Update dependencies
7
8
## [1.0.1] 2021-11-16
9
### Improvements
10
requirements.txt
@@ -1,8 +1,8 @@
-Flask==2.0.2
+Flask==2.1.2
flask-restx==0.5.1
-flask_jwt_extended==4.2.3
+flask_jwt_extended==4.4.1
Flask-SQLAlchemy==2.5.1
Flask-Cors==3.0.10
-pytest
gunicorn==20.1.0
-Werkzeug==2.0.3
+Werkzeug==2.1.2
+pytest==7.1.2
run.py
@@ -6,13 +6,11 @@
from api import app, db
-
@app.shell_context_processor
11
def make_shell_context():
12
return {"app": app,
13
"db": db
14
}
15
16
17
if __name__ == '__main__':
18
app.run(debug=True, host="0.0.0.0")
0 commit comments