-
-
Notifications
You must be signed in to change notification settings - Fork 31
Dash for R v0.4.0 #196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dash for R v0.4.0 #196
Changes from all commits
5c83f5c
d20daa8
0845184
29a3042
bbfc6cc
2e09789
c947c73
8e3c168
5d485d9
5c2ea67
cd33eba
f866d38
7e16f8d
4b99c88
2ca3f98
68be6a9
1d5ee2d
e852995
22227f6
006b6d3
93345e6
e6c460a
8c9678b
61e6dfa
ca6613c
fb05d18
85828d3
e4cedb3
cc9e06d
3733ead
2f1be58
6eddf98
a2907ba
98254a1
402969d
d7dcae7
c03c6c1
030adb4
744b696
c853cbf
7c26675
49c97da
21e78db
2c46d9f
0085036
ab702e9
6772b25
b03eccd
1a21232
12d1469
9721087
80576d4
28d30d4
6e0212d
d030347
bd704cd
f0e7dff
0032d96
08a9824
b3fbde2
406f8ae
9f7d33e
e082bc4
1cb3412
40c62a5
7b9c80e
8c05ad5
c1fecf9
c0c9201
a4d9dec
7f75aab
f976757
7d6bc60
1952be7
8fce87c
5a1beb0
0e7ddad
984324e
9385233
6fb198c
82d8b01
b84729b
0241ea6
e8db472
dc002a0
6d9553e
4af8d7c
b3be88d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ jobs: | |
"test": &test-template | ||
working_directory: ~/dashr | ||
docker: | ||
- image: byronz/dashr:ci | ||
- image: plotly/dashr:ci | ||
environment: | ||
PERCY_PARALLEL_TOTAL: '-1' | ||
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'True' | ||
|
@@ -37,7 +37,10 @@ jobs: | |
command: | | ||
python -m venv venv | ||
. venv/bin/activate | ||
pip install -e git+https://github.com/plotly/dash.git#egg=dash[testing] | ||
git clone --depth 1 https://github.com/plotly/dash.git dash-main | ||
cd dash-main && pip install -e .[dev,testing] --progress-bar off && cd .. | ||
cd dash-main/\@plotly/dash-generator-test-component-nested && npm ci && npm run build && sudo R CMD INSTALL . && cd ../../.. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @alexcjohnson has simplified this in a previous PR - you can run There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh. Dev to master, no need to fix it. Just take note :) |
||
cd dash-main/\@plotly/dash-generator-test-component-standard && npm ci && npm run build && sudo R CMD INSTALL . && cd ../../.. | ||
export PATH=$PATH:/home/circleci/.local/bin/ | ||
pytest --nopercyfinalize --junitxml=test-reports/dashr.xml tests/integration/ | ||
- store_artifacts: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
Package: dash | ||
Title: An Interface to the Dash Ecosystem for Authoring Reactive Web Applications | ||
Version: 0.3.1 | ||
Version: 0.4.0 | ||
Authors@R: c(person("Chris", "Parmer", role = c("aut"), email = "[email protected]"), person("Ryan Patrick", "Kyle", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-5829-9867"), email = "[email protected]"), person("Carson", "Sievert", role = c("aut"), comment = c(ORCID = "0000-0002-4958-2844")), person("Hammad", "Khan", role = c("aut"), email = "[email protected]"), person(family = "Plotly Technologies", role = "cph")) | ||
Description: A framework for building analytical web applications, Dash offers a pleasant and productive development experience. No JavaScript required. | ||
Depends: | ||
R (>= 3.0.2) | ||
Imports: | ||
dashHtmlComponents (== 1.0.2), | ||
dashCoreComponents (== 1.8.0), | ||
dashTable (== 4.6.0), | ||
dashHtmlComponents (== 1.0.3), | ||
dashCoreComponents (== 1.10.0), | ||
dashTable (== 4.7.0), | ||
R6, | ||
fiery (> 1.0.0), | ||
routr (> 0.2.0), | ||
|
@@ -31,9 +31,9 @@ Collate: | |
'imports.R' | ||
'print.R' | ||
'internal.R' | ||
Remotes: plotly/dash-html-components@6f4e7be, | ||
plotly/dash-core-components@fc153b4, | ||
plotly/dash-table@79d46ca | ||
Remotes: plotly/dash-html-components@e63acfa, | ||
plotly/dash-core-components@e322758, | ||
plotly/dash-table@f5620fd | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉