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
I'm in the process of releasing a new version of R6, and it results in warnings with ows4R.
They look like this:
Superclass ISOAbstractObject has cloneable=FALSE, but subclass ISOCodelist has cloneable=TRUE. A subclass cannot be cloneable when its superclass is not cloneable, so cloning will be disabled for ISOCodelist.
Superclass ISOAbstractObject has cloneable=FALSE, but subclass ISOCTCodelistValue has cloneable=TRUE. A subclass cannot be cloneable when its superclass is not cloneable, so cloning will be disabled for ISOCTCodelistValue.
...
Update: CRAN has decided let R6 through, so this issue is no longer holding up the R6 release. But that does mean that users who have the current version of ows4R and the new version of R6 will see these messages.
I'm in the process of releasing a new version of R6, and it results in warnings with ows4R.
They look like this:
See https://win-builder.r-project.org/incoming_pretest/R6_2.6.0_20250211_001904/reverseDependencies/summary.txt
To fix it, you can either set
cloneable=TRUE
forISOAbstractObject
, orcloneable=FALSE
forISOCTCodelistValue
.You can install the development version of R6 with:
This is unfortunately holding up the release of R6 on CRAN, so if you could release an updated version soon, I would appreciate it.
The text was updated successfully, but these errors were encountered: