-
Notifications
You must be signed in to change notification settings - Fork 82
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
updated bioc version / avoid bioc in CI+CRAN #950
Conversation
@hadley - any insight into why pak cannot install / find Biobase? |
app <- local_temp_app(list("index.Rmd" = c( | ||
"```{r}", | ||
"library(Biobase)", | ||
"```" | ||
))) | ||
withr::local_options(repos = c( | ||
CRAN = "https://cran.rstudio.com", | ||
BioC = "https://bioconductor.org/packages/3.16/bioc" | ||
BioC = "https://bioconductor.org/packages/3.17/bioc" |
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.
Can we use https://bioconductor.org/packages/release
?
@gaborcsardi any idea why pak isn't finding Biobase here? It's suspicious that it only happens on older R versions. |
Seems like the main Bioconductor site is broken:
|
Community discussion about bioc mirror outage: https://support.bioconductor.org/p/9153734/ |
Updated bioc tests to skip in CI and CRAN and asked pak to ignore the bioc packages when installing test dependencies. |
What is the long-term answer to this type of test fragility?