Skip to content

Commit 78b84ca

Browse files
authored
Merge pull request #365 from plotly/fix-init-configs
Fix url_base_pathname init configs
2 parents 7219b3d + 9959758 commit 78b84ca

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

Diff for: .circleci/config.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@ jobs:
1515
name: Write deps cache key
1616
command: cat "$REQUIREMENTS_FILE" > reqs.txt
1717

18+
- run:
19+
name: Write job name
20+
command: echo $CIRCLE_JOB > circlejob.txt
21+
1822
- restore_cache:
19-
key: deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}
23+
key: deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}-{{ checksum ".circleci/config.yml" }}-{{ checksum "circlejob.txt" }}
2024

2125
- run:
2226
name: Install dependencies
@@ -27,7 +31,7 @@ jobs:
2731
pip install -r $REQUIREMENTS_FILE
2832
2933
- save_cache:
30-
key: deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}
34+
key: deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}-{{ checksum ".circleci/config.yml" }}-{{ checksum "circlejob.txt" }}
3135
paths:
3236
- "venv"
3337

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
## 0.26.3 - 2018-08-27
26
## Fixed
37
- Prefix assets files with `requests_pathname_prefix`. [#351](https://github.com/plotly/dash/pull/351)

Diff for: dash/dash.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(
7676
assets_url_path='/assets',
7777
assets_ignore='',
7878
include_assets_files=True,
79-
url_base_pathname='/',
79+
url_base_pathname=None,
8080
assets_external_path=None,
8181
requests_pathname_prefix=None,
8282
routes_pathname_prefix=None,

Diff for: dash/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.26.3'
1+
__version__ = '0.26.4'

Diff for: dev-requirements-py37.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dash_core_components>=0.27.2
2-
dash_html_components>=0.12.0rc3
2+
dash_html_components>=0.12.0
33
dash-flow-example==0.0.3
44
dash-dangerously-set-inner-html
55
dash_renderer

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ appnope==0.1.0
22
backports.shutil-get-terminal-size==1.0.0
33
click==6.7
44
dash-core-components==0.3.3
5-
dash-html-components==0.11.0rc1
5+
dash-html-components==0.12.0
66
dash-renderer==0.2.9
77
dash.ly==0.14.0
88
decorator==4.0.11

0 commit comments

Comments
 (0)