-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Move {MASS} to Suggests #5993
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
Move {MASS} to Suggests #5993
Conversation
MASS is now dependent on R4.4, stopping me from installing ggplot2 (as a dep) on my friendly local cluster which tops out at R4.3. So, what's the status of this PR? 👼 |
ggplot2's requirement is not that strict on the version of MASS, so it's not really a big deal in theory, while it feels tricky. You should be able to install some older version of MASS like this. remotes::install_version("MASS", "7.3-60.0.1") |
This reverts commit 93295f5.
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.
LGTM
Merge branch 'main' into mass_to_suggests # Conflicts: # DESCRIPTION
This PR aims to fix part of #5986 (comment).
Briefly, MASS is required for 2D KDE and a particular ellipse type and not broadly all over ggplot2.
This PR moves it to Suggests, adds checks whether it is installed in the relevant places and skips tests when it is not installed.