File tree 6 files changed +14
-6
lines changed
6 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 15
15
name : Write deps cache key
16
16
command : cat "$REQUIREMENTS_FILE" > reqs.txt
17
17
18
+ - run :
19
+ name : Write job name
20
+ command : echo $CIRCLE_JOB > circlejob.txt
21
+
18
22
- restore_cache :
19
- key : deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}
23
+ key : deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}-{{ checksum ".circleci/config.yml" }}-{{ checksum "circlejob.txt" }}
20
24
21
25
- run :
22
26
name : Install dependencies
27
31
pip install -r $REQUIREMENTS_FILE
28
32
29
33
- save_cache :
30
- key : deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}
34
+ key : deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}-{{ checksum ".circleci/config.yml" }}-{{ checksum "circlejob.txt" }}
31
35
paths :
32
36
- " venv"
33
37
Original file line number Diff line number Diff line change
1
+ ## 0.26.4 - 2018-08-28
2
+ ## Fixed
3
+ - Set ` url_base_pathname ` to ` None ` in ` Dash.__init__ ` . Fix [ #364 ] ( https://github.com/plotly/dash/issues/364 )
4
+
1
5
## 0.26.3 - 2018-08-27
2
6
## Fixed
3
7
- Prefix assets files with ` requests_pathname_prefix ` . [ #351 ] ( https://github.com/plotly/dash/pull/351 )
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def __init__(
76
76
assets_url_path = '/assets' ,
77
77
assets_ignore = '' ,
78
78
include_assets_files = True ,
79
- url_base_pathname = '/' ,
79
+ url_base_pathname = None ,
80
80
assets_external_path = None ,
81
81
requests_pathname_prefix = None ,
82
82
routes_pathname_prefix = None ,
Original file line number Diff line number Diff line change 1
- __version__ = '0.26.3 '
1
+ __version__ = '0.26.4 '
Original file line number Diff line number Diff line change 1
1
dash_core_components>=0.27.2
2
- dash_html_components>=0.12.0rc3
2
+ dash_html_components>=0.12.0
3
3
dash-flow-example==0.0.3
4
4
dash-dangerously-set-inner-html
5
5
dash_renderer
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ appnope==0.1.0
2
2
backports.shutil-get-terminal-size == 1.0.0
3
3
click == 6.7
4
4
dash-core-components == 0.3.3
5
- dash-html-components == 0.11.0rc1
5
+ dash-html-components == 0.12.0
6
6
dash-renderer == 0.2.9
7
7
dash.ly == 0.14.0
8
8
decorator == 4.0.11
You can’t perform that action at this time.
0 commit comments