Move from deprecated flask-cache to flask-caching (#4944)

It appears the officially maintained fork of flask-cache is
flask-caching https://github.com/sh4nks/flask-caching . It is fully
compatible with flask-cache.
This commit is contained in:
Maxime Beauchemin 2018-05-07 23:18:46 -07:00 committed by GitHub
parent 374482bcde
commit 45ffed9976
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ colorama==0.3.9
cryptography==1.9 cryptography==1.9
flask==0.12.2 flask==0.12.2
flask-appbuilder==1.10.0 flask-appbuilder==1.10.0
flask-cache==0.13.1 flask-caching==1.4.0
flask-compress==1.4.0 flask-compress==1.4.0
flask-migrate==2.1.1 flask-migrate==2.1.1
flask-script==2.0.6 flask-script==2.0.6

View File

@ -57,7 +57,7 @@ setup(
'cryptography', 'cryptography',
'flask', 'flask',
'flask-appbuilder', 'flask-appbuilder',
'flask-cache', 'flask-caching',
'flask-compress', 'flask-compress',
'flask-migrate', 'flask-migrate',
'flask-script', 'flask-script',

View File

@ -29,7 +29,7 @@ import celery
from dateutil.parser import parse from dateutil.parser import parse
from flask import flash, Markup, render_template from flask import flash, Markup, render_template
from flask_babel import gettext as __ from flask_babel import gettext as __
from flask_cache import Cache from flask_caching import Cache
import markdown as md import markdown as md
import numpy import numpy
import pandas as pd import pandas as pd