Hello -
Currently working on building an R shiny application as an R package which for now is available for install via github and thus can be installed using devtools (devtools::install_github
). However, my question is when a new user installs devtools, tibble version 3.0.4 gets installed, yet this version of tibble gives an error with my application and my application requires tibble version 2.1.3.
I see when making my description file and I use
usethis::use_package("tibble", min_version="2.1.3)
The output from the above command in the Description file is so:
tibble (>= 2.1.3), which reads that the application can use a version of tibble that is not acceptable.
I am curious about the best way to deal with this within my package.
One potential work around is to tell new users after downloading to use this command
devtools::install_version("tibble", version = "2.1.3")
but I would like an way to not have to request a new user who downloads the application to do this.
Any thoughts -