Skip to content

Commit

Permalink
Move from deprecated flask-cache to flask-caching
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mistercrunch committed May 8, 2018
1 parent 5d6e59a commit 09ed363
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -5,7 +5,7 @@ colorama==0.3.9
cryptography==1.9
flask==0.12.2
flask-appbuilder==1.10.0
flask-cache==0.13.1
flask-caching==1.4.0
flask-compress==1.4.0
flask-migrate==2.1.1
flask-script==2.0.6
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -57,7 +57,7 @@ def get_git_sha():
'cryptography',
'flask',
'flask-appbuilder',
'flask-cache',
'flask-caching',
'flask-compress',
'flask-migrate',
'flask-script',
Expand Down
2 changes: 1 addition & 1 deletion superset/utils.py
Expand Up @@ -29,7 +29,7 @@
from dateutil.parser import parse
from flask import flash, Markup, render_template
from flask_babel import gettext as __
from flask_cache import Cache
from flask_caching import Cache
import markdown as md
import numpy
import pandas as pd
Expand Down

0 comments on commit 09ed363

Please sign in to comment.