-
-
Notifications
You must be signed in to change notification settings - Fork 31
Dash R Core Package Unification #243
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
Changes from 12 commits
32ba6bb
e7c523e
f28adce
e6fcb6e
ccce6ab
2b28268
4946ae6
ea39c8a
fae8c79
3e266c9
2ee8b56
bd6080b
ef6a5c7
227df58
3760784
0ed9eb6
028a5e1
4662f93
b6a4736
9977a3f
f02b125
d8534f4
d66d720
ace5af1
bf0dc69
7a8942b
6601411
c7ee665
5b9f960
0427f28
ec1ab35
fb42f18
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 |
---|---|---|
@@ -1,14 +1,11 @@ | ||
Package: dash | ||
Title: An Interface to the Dash Ecosystem for Authoring Reactive Web Applications | ||
Version: 0.9.1 | ||
Version: 1.0.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"), comment = c(ORCID = "0000-0003-2479-9841"), 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.1.1), | ||
dashCoreComponents (== 1.13.0), | ||
dashTable (== 4.11.0), | ||
Comment on lines
-9
to
-11
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. 🎉 |
||
R6, | ||
fiery (> 1.0.0), | ||
routr (> 0.2.0), | ||
|
@@ -25,14 +22,6 @@ Imports: | |
glue | ||
Suggests: | ||
testthat | ||
Collate: | ||
'utils.R' | ||
'dependencies.R' | ||
'dash-package.R' | ||
'dash.R' | ||
'imports.R' | ||
'print.R' | ||
'internal.R' | ||
Comment on lines
-28
to
-35
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. Did this get removed when you re-ran 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. I did remove this manually. Ideally what I would expect to happen is that all the new Do you think there's a better way around it than simply removing it? I didn't notice any issues arising from removing it myself. 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. @HammadTheOne I think it's safe to remove it. If the tests pass, and the package functionality remains as before, I'm OK if we 🔪 this block. |
||
Remotes: plotly/dash-html-components@7209e0a, | ||
plotly/dash-core-components@91a424e, | ||
plotly/dash-table@aa519b7 | ||
|
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.
✨