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
It seems like envir is not a valid argument in utils::getS3method in R version 3.2.4. Couldn't find a specific mention of when this was added to R.utils, but unless there is something wrong with my R install I suppose this warrants a version bump for the R in DESCRIPTION.
getS3method is only used on one line however, so it might be a better idea to just add an if statement for older versions of R (where envir is not an argument) and something like this:
It seems like
envir
is not a valid argument inutils::getS3method
in R version 3.2.4. Couldn't find a specific mention of when this was added toR.utils
, but unless there is something wrong with my R install I suppose this warrants a version bump for the R inDESCRIPTION
.getS3method
is only used on one line however, so it might be a better idea to just add anif
statement for older versions of R (where envir is not an argument) and something like this:Could submit a PR if I have the right idea here (and figure out which version of
R.utils
added the argument).-Kristian
The text was updated successfully, but these errors were encountered: