Skip to content

Commit 0bee2a8

Browse files
authored
Merge branch 'dev' into etpinard/jl-compgen_filename-case-insensitive-fs
2 parents 0d4863f + e5583bd commit 0bee2a8

File tree

120 files changed

+35225
-16438
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+35225
-16438
lines changed

.circleci/config.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ jobs:
6161
command: |
6262
. venv/bin/activate
6363
set -eo pipefail
64+
cd dash/dash-renderer && renderer build && cd ../../
6465
pip install -e . --progress-bar off && pip list | grep dash
6566
npm install --production && npm run initialize
6667
npm run lint
@@ -121,7 +122,7 @@ jobs:
121122
name: ️️🏗️ build core
122123
command: |
123124
. venv/bin/activate && pip install --no-cache-dir --upgrade -e . --progress-bar off && mkdir packages
124-
cd dash-renderer && renderer build && python setup.py sdist && mv dist/* ../packages/ && cd ..
125+
cd dash/dash-renderer && renderer build && cd ../../ && python setup.py sdist && mv dist/* packages/
125126
git clone --depth 1 https://github.com/plotly/dash-core-components.git
126127
cd dash-core-components && npm ci && npm run build && python setup.py sdist && mv dist/* ../packages/ && cd ..
127128
ls -la packages
@@ -223,7 +224,7 @@ jobs:
223224
name: ️️🏗️ build core
224225
command: |
225226
pip install --no-cache-dir --upgrade -e .[dev,testing] --progress-bar off
226-
cd dash-renderer && renderer build && python setup.py sdist && mv dist/* ../packages/ && cd ..
227+
cd dash/dash-renderer && renderer build && cd ../../ && python setup.py sdist && mv dist/* packages/
227228
git clone --depth 1 https://github.com/plotly/dash-core-components.git
228229
cd dash-core-components && npm ci && npm run build && python setup.py sdist && cd ..
229230
@@ -256,12 +257,7 @@ jobs:
256257
cd dash-html-components; npm ci && npm run build; rm -rf !(.|..|DESCRIPTION|LICENSE.txt|LICENSE|NAMESPACE|.Rbuildignore|R|man|inst|vignettes|build)
257258
cd ../dash-core-components; npm ci && npm run build; rm -rf !(.|..|DESCRIPTION|LICENSE.txt|LICENSE|NAMESPACE|.Rbuildignore|R|man|inst|vignettes|build)
258259
cd ../dash-table; npm ci && npm run build; rm -rf !(.|..|DESCRIPTION|LICENSE.txt|LICENSE|NAMESPACE|.Rbuildignore|R|man|inst|vignettes|build); cd ..
259-
260-
- run:
261-
name: 🔧 fix up dash metadata
262-
command: |
263-
sudo Rscript dashR/tests/circleci/fixup_metadata.R
264-
260+
265261
- run:
266262
name: 🎛 set environment variables
267263
command: |

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ coverage.xml
4242
# Distribution / packaging
4343
.Python
4444
build/
45+
dash/deps/
4546
develop-eggs/
4647
dist/
4748
downloads/
@@ -63,7 +64,6 @@ node_modules/
6364
.npm
6465
npm-debug*
6566

66-
dash_renderer/
6767
dash_generator_test_component_standard/
6868
dash_generator_test_component_nested/
6969
dash_test_components/

@plotly/dash-component-plugins/package-lock.json

Lines changed: 40 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

@plotly/dash-generator-test-component-nested/package-lock.json

Lines changed: 40 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)