-
Notifications
You must be signed in to change notification settings - Fork 63
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
sysreqs
is not resolved correctly from a package published about 3 days ago
#692
Comments
This should be fixed now: ❯ options(pkg.platforms = "source")
❯ pak::pkg_deps("hypergeo2")[c("ref", "package", "repotype", "sysreqs")]
# A data frame: 3 × 4
ref package repotype sysreqs
<chr> <chr> <chr> <chr>
1 BH BH cran ""
2 hypergeo2 hypergeo2 cran "gmp, mpfr"
3 Rcpp Rcpp cran "" |
Great, when will this update be applied to the "check-standard" github workflow? Or how can I set that in |
It should already work on GHA as well, no need to set anything. |
Thanks, the workflow is running smoothly now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A package
hypergeo2
was published on CRAN about 3 days ago. Just now I started a githubR CMD CHECK
workflow usingpak
to set up dependencies includinghypergeo2
for another packagecbbinom
, and the system requirements ofhypergeo2
was not discovered correctly, failing to installhypergeo2
in the workflow.Here was what I ran just now:
We see:
pak::pky_system_requirements()
found the system requirements correctly (gmp
andmpfr
), butpak::pkg_deps()
(used to set up dependencies in the workflow) printed thesysreqs
asNA
. This happened after runningpak::meta_update()
, thus with the newest metadata database.The text was updated successfully, but these errors were encountered: