File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ matrix:
29
29
name : " Python 3.4"
30
30
env :
31
31
- DJANGO="django==2.0.13"
32
+ - PANDAS="pandas==0.22.0"
32
33
- python : " 3.5"
33
34
name : " Python 3.5"
34
35
env : []
Original file line number Diff line number Diff line change 21
21
22
22
23
23
try :
24
- import matplotlib
24
+ import matplotlib # noqa
25
25
except ImportError :
26
26
HAS_MATPLOTLIB = False
27
27
else :
28
28
HAS_MATPLOTLIB = True
29
29
30
30
31
31
try :
32
- import django_pandas
32
+ import django_pandas # noqa
33
33
except ImportError :
34
34
HAS_DJANGO_PANDAS = False
35
35
else :
Original file line number Diff line number Diff line change 1
1
from django .db import models
2
2
try :
3
- from django_pandas .managers import DataFrameManager
3
+ from django_pandas .managers import DataFrameManager
4
4
except ImportError :
5
- DataFrameManager = models .Manager
5
+ DataFrameManager = models .Manager
6
6
7
7
8
8
class TimeSeries (models .Model ):
You can’t perform that action at this time.
0 commit comments