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
If a package has Rmpi in Suggests it will fail to install with pak, because Rmpi is not built for MacOS. See this example: log.txt
There does not seem to be anyway to avoid this error except ignoring the whole package with Rmpi=?ignore. It would be great if pak could have something like Rmpi=?ignore-os=macos.
Or simply check if the package is not available for some OS and skip it with a warning.
The text was updated successfully, but these errors were encountered:
Or simply check if the package is not available for some OS and skip it with a warning.
What do you mean by "not available"? There is no binary build for it? That does not necessarily mean that it cannot be installed, e.g. new packages typically don't have binaries for a couple of days. There are no binary builds for Linux packages on R-devel, etc.
We might add an ignore-os parameter to pak. But GHA already has syntax to run different steps on different OSes, so you can already ignore Rmpi on macOS (or, even better, install its dependencies from Homebrew). So there is a straightforward workaround, I think.
If a package has
Rmpi
inSuggests
it will fail to install withpak
, becauseRmpi
is not built for MacOS. See this example: log.txtThere does not seem to be anyway to avoid this error except ignoring the whole package with
Rmpi=?ignore
. It would be great ifpak
could have something likeRmpi=?ignore-os=macos
.Or simply check if the package is not available for some OS and skip it with a warning.
The text was updated successfully, but these errors were encountered: