The commit 1bba551 removed the R version check in inst/include/cpp11/environment.hpp that previously wrapped R_removeVarFromFrame, along with the fallback code for older R versions. As a result, the package no longer installs on R 3.6.
However, the CRAN DESCRIPTION still lists R (>= 3.6) as supported.
To resolve this, either:
- Restore the compatibility fallback for
R_removeVarFromFrame in environment.hpp, or
- End R 3.6 support and update the DESCRIPTION to require R >= 4.0.
The commit 1bba551 removed the R version check in
inst/include/cpp11/environment.hppthat previously wrappedR_removeVarFromFrame, along with the fallback code for older R versions. As a result, the package no longer installs on R 3.6.However, the CRAN DESCRIPTION still lists R (>= 3.6) as supported.
To resolve this, either:
R_removeVarFromFrameinenvironment.hpp, or