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
{{ message }}
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
This I learned, isFALSE was introduced in R3.4.2. Right now in your DESCRIPTION file, you have R > 3 as the only restriction on the version of R users are required to have. In order to ensure this works for earlier versions of R you would need to change the following isFALSE sections to !isTRUE or more robust(!is.null(x) && !isTRUE(x))
Thanks a lot! This is now fixed with #85
We changed the isFALSE sections to !isTRUE in build_query() and retired build_user_query() as its funtionalies are now replaced by other functions.
This I learned,
isFALSE
was introduced in R3.4.2. Right now in your DESCRIPTION file, you have R > 3 as the only restriction on the version of R users are required to have. In order to ensure this works for earlier versions of R you would need to change the followingisFALSE
sections to!isTRUE
or more robust(!is.null(x) && !isTRUE(x))
academictwitteR/R/build_user_queryv2.R
Line 76 in 3a2d429
academictwitteR/R/build_queryv2.R
Line 85 in 3a2d429
The CRAN checks missed this because they only check 1 version past, current version, and devel versions of R.
openjournals/joss-reviews#3272
The text was updated successfully, but these errors were encountered: