You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to install source packages on Windows using R version 4.3.3. I think I'm supposed to be allowed to use options(pkg.platforms = "source"). The problem is that when I do so, pkgdepends seems to want to find the latest version of the MASS dependency from CRAN, which insists on R >= 4.4.
I can get around this by not setting options(pkg.platforms = "source") and rather trying to find another way to get all the dependencies from source, but I figure that shouldn't be necessary. I suppose this hasn't happened to others because most people don't set that option.
The text was updated successfully, but these errors were encountered:
I'm trying to install source packages on Windows using R version 4.3.3. I think I'm supposed to be allowed to use
options(pkg.platforms = "source")
. The problem is that when I do so, pkgdepends seems to want to find the latest version of the MASS dependency from CRAN, which insists on R >= 4.4.Created on 2024-06-07 with reprex v2.1.0
Session info
My installed version of MASS doesn't have that dependency. That's why I figure it must be trying the CRAN version.
I'm using the development version of pkgdepends, but it happens on the CRAN version of pkgdepends too.
Some variations that also don't work:
c("ggplot2", "MASS=?ignore")
cites "MASS: dependency conflict".c("ggplot2", "installed::MASS")
cites "Platform mismatch".I can get around this by not setting
options(pkg.platforms = "source")
and rather trying to find another way to get all the dependencies from source, but I figure that shouldn't be necessary. I suppose this hasn't happened to others because most people don't set that option.The text was updated successfully, but these errors were encountered: