Re: [R-pkg-devel] Depending on currently unreleased package

2017-05-16 Thread Jim Hester
You can use the `Remotes: ` feature in your DESCRIPTION file (https://github.com/hadley/devtools/blob/master/vignettes/dependencies.Rmd) implemented in devtools to automatically install development versions of packages during development, including on Travis CI. However they will need to be removed

Re: [R-pkg-devel] Depending on currently unreleased package

2017-05-09 Thread William Brannon
Thanks! That took care of it. I had been tripped up by how the R support in travis-ci throws errors if suggested packages aren't available. On May 6, 2017 4:18 PM, "Duncan Murdoch" wrote: > On 06/05/2017 4:02 PM, William Brannon wrote: > >> Hi r-devel, >> >> I have a package called sqlscore ( >>

Re: [R-pkg-devel] Depending on currently unreleased package

2017-05-06 Thread Duncan Murdoch
On 06/05/2017 4:02 PM, William Brannon wrote: Hi r-devel, I have a package called sqlscore ( https://cran.r-project.org/package=sqlscore) which depends on dplyr functions for SQL generation. The new version of dplyr splits these functions into a different package (dbplyr) and provides a recommen

[R-pkg-devel] Depending on currently unreleased package

2017-05-06 Thread William Brannon
Hi r-devel, I have a package called sqlscore ( https://cran.r-project.org/package=sqlscore) which depends on dplyr functions for SQL generation. The new version of dplyr splits these functions into a different package (dbplyr) and provides a recommended way to wrap around access to the function in