aboutsummaryrefslogtreecommitdiff
path: root/requirements.txt
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-11 18:54:56 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-11 18:54:56 -0500
commit6641c28ab2109277ed9e15559d3ecdc10cc5b807 (patch)
tree6b98ea7417647f5e8574df7a9b2b7d69813d5651 /requirements.txt
parentfixed deps which means flask 1 (diff)
downloadstackbin-6641c28ab2109277ed9e15559d3ecdc10cc5b807.tar.gz
stackbin-6641c28ab2109277ed9e15559d3ecdc10cc5b807.tar.bz2
stackbin-6641c28ab2109277ed9e15559d3ecdc10cc5b807.zip
Fix dep problem so flask>=2.0.0 now!
By just writing a new initdb command so we don't need manage.py anymore.
Diffstat (limited to 'requirements.txt')
-rw-r--r--requirements.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt
index b1b3d3f..ed75ab4 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,4 @@
-Flask<2.0.0
+Flask
Flask-SQLAlchemy
Flask-Script
PyMySQL
bgstack15