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
Doesn't work in R>=4.4 . The comparison installed_version >= version fails because installed_version is a packageVersion object and can't be compared to a numeric anymore. The fix is to change it to:
installed_version >= as.character(version)
The text was updated successfully, but these errors were encountered:
This snippet here from
helpers-install.R
:Doesn't work in R>=4.4 . The comparison
installed_version >= version
fails becauseinstalled_version
is apackageVersion
object and can't be compared to a numeric anymore. The fix is to change it to:installed_version >= as.character(version)
The text was updated successfully, but these errors were encountered: