CRAN Package Check Results for Maintainer ‘Kirill Müller <kirill at cynkra.com>’

Last updated on 2025-02-16 08:51:32 CET.

Package ERROR WARN NOTE OK
bindr 15
bindrcpp 15
blob 15
DBI 15
DBItest 15
dm 2 13
duckdb 6 9
duckplyr 1 14
fledge 3 12
hms 3 12
igraph 1 1 4 9
kimisc 15
mockr 15
pillar 15
procmaps 15
profile 3 12
RMariaDB 4 11
roxygen2md 15
RPostgres 9 6
rprojroot 15
RSQLite 4 11
tibble 7 8
utf8 15
winch 15

Package bindr

Current CRAN status: OK: 15

Package bindrcpp

Current CRAN status: OK: 15

Package blob

Current CRAN status: OK: 15

Package DBI

Current CRAN status: OK: 15

Package DBItest

Current CRAN status: OK: 15

Package dm

Current CRAN status: NOTE: 2, OK: 13

Version: 1.0.11
Check: for unstated dependencies in ‘demo’
Result: NOTE 'library' or 'require' call not declared from: ‘tidyverse’ Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc

Package duckdb

Current CRAN status: NOTE: 6, OK: 9

Version: 1.1.3-2
Check: installed package size
Result: NOTE installed size is 49.4Mb sub-directories of 1Mb or more: libs 48.6Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 1.1.3-1
Check: installed package size
Result: NOTE installed size is 49.3Mb sub-directories of 1Mb or more: libs 48.6Mb Flavor: r-oldrel-macos-arm64

Package duckplyr

Current CRAN status: ERROR: 1, OK: 14

Version: 1.0.0
Check: examples
Result: ERROR Running examples in ‘duckplyr-Ex.R’ failed The error most likely occurred in: > ### Name: read_file_duckdb > ### Title: Read Parquet, CSV, and other files using DuckDB > ### Aliases: read_file_duckdb read_parquet_duckdb read_csv_duckdb > ### read_json_duckdb > > ### ** Examples > > # Create simple CSV file > path <- tempfile("duckplyr_test_", fileext = ".csv") > write.csv(data.frame(a = 1:3, b = letters[4:6]), path, row.names = FALSE) > > # Reading is immediate > df <- read_csv_duckdb(path) > > # Names are always available > names(df) [1] "a" "b" > > # Materialization upon access is turned off by default > try(print(df$a)) [1] 1 2 3 > > # Materialize explicitly > collect(df)$a [1] 1 2 3 > > # Automatic materialization with prudence = "lavish" > df <- read_csv_duckdb(path, prudence = "lavish") > df$a [1] 1 2 3 > > # Specify column types > read_csv_duckdb( + path, + options = list(delim = ",", types = list(c("DOUBLE", "VARCHAR"))) + ) # A duckplyr data frame: 2 variables a b <dbl> <chr> 1 1 d 2 2 e 3 3 f > > # Create and read a simple JSON file > path <- tempfile("duckplyr_test_", fileext = ".json") > writeLines('[{"a": 1, "b": "x"}, {"a": 2, "b": "y"}]', path) > > # Reading needs the json extension > db_exec("INSTALL json") > db_exec("LOAD json") Error in `duckdb_result()`: ! rapi_execute: Failed to run query Error: Invalid Input Error: Initialization function "json_init" from file "/data/gannet/ripley/.local/share/R/duckdb/extensions/v1.1.3/linux_amd64_gcc4/json.duckdb_extension" threw an exception: "Missing DB manager" Backtrace: ▆ 1. ├─duckplyr::db_exec("LOAD json") 2. │ ├─DBI::dbExecute(con, sql) 3. │ └─DBI::dbExecute(con, sql) 4. │ ├─DBI::dbSendStatement(conn, statement, ...) 5. │ └─DBI::dbSendStatement(conn, statement, ...) 6. │ ├─DBI::dbSendQuery(conn, statement, ...) 7. │ └─duckdb::dbSendQuery(conn, statement, ...) 8. │ └─duckdb (local) .local(conn, statement, ...) 9. │ └─duckdb:::duckdb_result(connection = conn, stmt_lst = stmt_lst, arrow = arrow) 10. │ └─duckdb:::duckdb_execute(res) 11. │ └─duckdb:::rethrow_rapi_execute(...) 12. │ ├─rlang::try_fetch(...) 13. │ │ ├─base::tryCatch(...) 14. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 15. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 16. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 17. │ │ └─base::withCallingHandlers(...) 18. │ └─duckdb:::rapi_execute(stmt, arrow, integer64) 19. └─base::.handleSimpleError(...) 20. └─rlang (local) h(simpleError(msg, call)) 21. └─handlers[[1L]](cnd) 22. └─duckdb:::rethrow_error_from_rapi(e, call) 23. └─rlang::abort(msg, call = call) Execution halted Flavor: r-devel-linux-x86_64-fedora-clang

Version: 1.0.0
Check: re-building of vignette outputs
Result: ERROR Error(s) in re-building vignettes: --- re-building ‘developers.Rmd’ using rmarkdown --- finished re-building ‘developers.Rmd’ --- re-building ‘extend.Rmd’ using rmarkdown --- finished re-building ‘extend.Rmd’ --- re-building ‘fallback.Rmd’ using rmarkdown --- finished re-building ‘fallback.Rmd’ --- re-building ‘large.Rmd’ using rmarkdown *** caught segfault *** address 0x1, cause 'memory not mapped' Traceback: 1: rapi_execute(stmt, arrow, integer64) 2: withCallingHandlers(expr, condition = function(cnd) { { .__handler_frame__. <- TRUE .__setup_frame__. <- frame if (inherits(cnd, "message")) { except <- c("warning", "error") } else if (inherits(cnd, "warning")) { except <- "error" } else { except <- "" } } while (!is_null(cnd)) { if (inherits(cnd, "error")) { out <- handlers[[1L]](cnd) if (!inherits(out, "rlang_zap")) throw(out) } inherit <- .subset2(.subset2(cnd, "rlang"), "inherit") if (is_false(inherit)) { return() } cnd <- .subset2(cnd, "parent") }}) 3: doTryCatch(return(expr), name, parentenv, handler) 4: tryCatchOne(expr, names, parentenv, handlers[[1L]]) 5: tryCatchList(expr, classes, parentenv, handlers) 6: tryCatch(withCallingHandlers(expr, condition = function(cnd) { { .__handler_frame__. <- TRUE .__setup_frame__. <- frame if (inherits(cnd, "message")) { except <- c("warning", "error") } else if (inherits(cnd, "warning")) { except <- "error" } else { except <- "" } } while (!is_null(cnd)) { if (inherits(cnd, "error")) { out <- handlers[[1L]](cnd) if (!inherits(out, "rlang_zap")) throw(out) } inherit <- .subset2(.subset2(cnd, "rlang"), "inherit") if (is_false(inherit)) { return() } cnd <- .subset2(cnd, "parent") }}), stackOverflowError = handlers[[1L]]) 7: rlang::try_fetch(rapi_execute(stmt, arrow, integer64), error = function(e) { rethrow_error_from_rapi(e, call)}) 8: rethrow_rapi_execute(res@stmt_lst$ref, res@arrow, res@connection@bigint == "integer64") 9: duckdb_execute(res) 10: duckdb_result(connection = conn, stmt_lst = stmt_lst, arrow = arrow) 11: .local(conn, statement, ...) 12: dbSendQuery(conn, statement, ...) 13: dbSendQuery(conn, statement, ...) 14: dbSendStatement(conn, statement, ...) 15: dbSendStatement(conn, statement, ...) 16: DBI::dbExecute(con, sql) 17: DBI::dbExecute(con, sql) 18: db_exec("LOAD httpfs") 19: eval(expr, envir) 20: eval(expr, envir) 21: withVisible(eval(expr, envir)) 22: withCallingHandlers(code, message = function (cnd) { watcher$capture_plot_and_output() if (on_message$capture) { watcher$push(cnd) } if (on_message$silence) { invokeRestart("muffleMessage") }}, warning = function (cnd) { if (getOption("warn") >= 2 || getOption("warn") < 0) { return() } watcher$capture_plot_and_output() if (on_warning$capture) { cnd <- sanitize_call(cnd) watcher$push(cnd) } if (on_warning$silence) { invokeRestart("muffleWarning") }}, error = function (cnd) { watcher$capture_plot_and_output() cnd <- sanitize_call(cnd) watcher$push(cnd) switch(on_error, continue = invokeRestart("eval_continue"), stop = invokeRestart("eval_stop"), error = NULL)}) 23: eval(call) 24: eval(call) 25: with_handlers({ for (expr in tle$exprs) { ev <- withVisible(eval(expr, envir)) watcher$capture_plot_and_output() watcher$print_value(ev$value, ev$visible, envir) } TRUE}, handlers) 26: doWithOneRestart(return(expr), restart) 27: withOneRestart(expr, restarts[[1L]]) 28: withRestartList(expr, restarts[-nr]) 29: doWithOneRestart(return(expr), restart) 30: withOneRestart(withRestartList(expr, restarts[-nr]), restarts[[nr]]) 31: withRestartList(expr, restarts) 32: withRestarts(with_handlers({ for (expr in tle$exprs) { ev <- withVisible(eval(expr, envir)) watcher$capture_plot_and_output() watcher$print_value(ev$value, ev$visible, envir) } TRUE}, handlers), eval_continue = function() TRUE, eval_stop = function() FALSE) 33: evaluate::evaluate(...) 34: evaluate(code, envir = env, new_device = FALSE, keep_warning = if (is.numeric(options$warning)) TRUE else options$warning, keep_message = if (is.numeric(options$message)) TRUE else options$message, stop_on_error = if (is.numeric(options$error)) options$error else { if (options$error && options$include) 0L else 2L }, output_handler = knit_handlers(options$render, options)) 35: in_dir(input_dir(), expr) 36: in_input_dir(evaluate(code, envir = env, new_device = FALSE, keep_warning = if (is.numeric(options$warning)) TRUE else options$warning, keep_message = if (is.numeric(options$message)) TRUE else options$message, stop_on_error = if (is.numeric(options$error)) options$error else { if (options$error && options$include) 0L else 2L }, output_handler = knit_handlers(options$render, options))) 37: eng_r(options) 38: block_exec(params) 39: call_block(x) 40: process_group(group) 41: withCallingHandlers(if (tangle) process_tangle(group) else process_group(group), error = function(e) if (xfun::pkg_available("rlang", "1.0.0")) rlang::entrace(e)) 42: xfun:::handle_error(withCallingHandlers(if (tangle) process_tangle(group) else process_group(group), error = function(e) if (xfun::pkg_available("rlang", "1.0.0")) rlang::entrace(e)), function(loc) { setwd(wd) write_utf8(res, output %n% stdout()) paste0("\nQuitting from lines ", loc) }, if (labels[i] != "") sprintf(" [%s]", labels[i]), get_loc) 43: process_file(text, output) 44: knitr::knit(knit_input, knit_output, envir = envir, quiet = quiet) 45: rmarkdown::render(file, encoding = encoding, quiet = quiet, envir = globalenv(), output_dir = getwd(), ...) 46: vweave_rmarkdown(...) 47: engine$weave(file, quiet = quiet, encoding = enc) 48: doTryCatch(return(expr), name, parentenv, handler) 49: tryCatchOne(expr, names, parentenv, handlers[[1L]]) 50: tryCatchList(expr, classes, parentenv, handlers) 51: tryCatch({ engine$weave(file, quiet = quiet, encoding = enc) setwd(startdir) output <- find_vignette_product(name, by = "weave", engine = engine) if (!have.makefile && vignette_is_tex(output)) { texi2pdf(file = output, clean = FALSE, quiet = quiet) output <- find_vignette_product(name, by = "texi2pdf", engine = engine) }}, error = function(e) { OK <<- FALSE message(gettextf("Error: processing vignette '%s' failed with diagnostics:\n%s", file, conditionMessage(e)))}) 52: tools:::.buildOneVignette("large.Rmd", "/data/gannet/ripley/R/packages/tests-clang/duckplyr.Rcheck/vign_test/duckplyr", TRUE, FALSE, "large", "UTF-8", "/tmp/Rtmpb1ObbT/working_dir/RtmpxlpqcA/file27634916e7905f.rds") An irrecoverable exception occurred. R is aborting now ... --- re-building ‘limits.Rmd’ using rmarkdown --- finished re-building ‘limits.Rmd’ --- re-building ‘prudence.Rmd’ using rmarkdown --- finished re-building ‘prudence.Rmd’ --- re-building ‘telemetry.Rmd’ using rmarkdown --- finished re-building ‘telemetry.Rmd’ SUMMARY: processing the following file failed: ‘large.Rmd’ Error: Vignette re-building failed. Execution halted Flavor: r-devel-linux-x86_64-fedora-clang

Package fledge

Current CRAN status: NOTE: 3, OK: 12

Version: 0.1.2
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: get_top_level_commits.Rd: tibble Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Package hms

Current CRAN status: NOTE: 3, OK: 12

Version: 1.1.3
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: hms.Rd: vec_cast Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Package igraph

Current CRAN status: ERROR: 1, WARN: 1, NOTE: 4, OK: 9

Version: 2.1.4
Check: installed package size
Result: NOTE installed size is 23.8Mb sub-directories of 1Mb or more: R 2.1Mb doc 1.2Mb help 2.9Mb libs 17.1Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 2.1.3
Check: installed package size
Result: NOTE installed size is 22.8Mb sub-directories of 1Mb or more: R 2.1Mb doc 1.2Mb help 2.0Mb libs 17.1Mb Flavor: r-oldrel-macos-arm64

Version: 2.1.3
Check: tests
Result: ERROR Running ‘testthat.R’ [69s/36s] Running the tests in ‘tests/testthat.R’ failed. Complete output: > library(testthat) > library(igraph) Attaching package: 'igraph' The following object is masked from 'package:testthat': compare The following objects are masked from 'package:stats': decompose, spectrum The following object is masked from 'package:base': union > > test_check("igraph") Starting 2 test processes [ FAIL 1 | WARN 0 | SKIP 65 | PASS 4492 ] ══ Skipped tests (65) ══════════════════════════════════════════════════════════ • On CRAN (63): 'test-vs-es.R:136:3', 'test-vs-es.R:157:3', 'test-vs-es.R:180:3', 'test-adjacency.R:576:3', 'test-adjacency.R:607:3', 'test-bug-501-rectangles.R:17:3', 'test-conversion.R:42:3', 'test-conversion.R:49:3', 'test-conversion.R:132:3', 'test-conversion.R:188:3', 'test-centrality.R:68:5', 'test-centrality.R:117:5', 'test-centrality.R:125:3', 'test-centrality.R:695:3', 'test-games.R:61:3', 'test-games.R:81:3', 'test-graph.data.frame.R:49:3', 'test-hrg.R:15:3', 'test-incidence.R:9:3', 'test-incidence.R:25:3', 'test-incidence.R:87:3', 'test-incidence.R:103:3', 'test-incidence.R:162:3', 'test-interface.R:184:3', 'test-layout.R:20:3', 'test-layout.R:153:3', 'test-layout.R:208:3', 'test-make.R:61:3', 'test-make.R:70:3', 'test-make.R:78:3', 'test-make.R:88:3', 'test-make.R:96:3', 'test-minimal.st.separators.R:12:3', 'test-modularity_matrix.R:18:3', 'test-old-data-type.R:94:3', 'test-operators.R:156:3', 'test-par.R:5:3', 'test-par.R:15:3', 'test-paths.R:22:3', 'test-paths.R:47:3', 'test-plot.R:17:3', 'test-plot.R:42:3', 'test-plot.R:67:3', 'test-print.R:51:3', 'test-rng.R:2:3', 'test-serialize.R:9:3', 'test-trees.R:204:3', 'test-utils-assert-args.R:2:3', 'test-utils-assert-args.R:10:3', 'test-structural.properties.R:18:3', 'test-structural.properties.R:182:3', 'test-structural.properties.R:202:3', 'test-versions.R:9:3', 'test-versions.R:19:3', 'test-versions.R:25:3', 'test-versions.R:40:3', 'test-versions.R:55:3', 'test-versions.R:72:3', 'test-versions.R:98:3', 'test-vs-es-printing.R:10:3', 'test-vs-es-printing.R:28:3', 'test-vs-es-printing.R:43:3', 'test-vs-es-printing.R:59:3' • empty test (1): 'test-topology.R:45:1' • nested igraph call handling not implemented yet (1): 'test-structural.properties.R:166:3' ══ Failed tests ════════════════════════════════════════════════════════════════ ── Error ('test-graphNEL.R:11:3'): graphNEL conversion works ─────────────────── Error in `gi$map12`: $ operator is invalid for atomic vectors Backtrace: ▆ 1. └─testthat::expect_equal(gi$map12, 1:vcount(g)) at test-graphNEL.R:11:3 2. └─testthat::quasi_label(enquo(object), label, arg = "object") 3. └─rlang::eval_bare(expr, quo_get_env(quo)) [ FAIL 1 | WARN 0 | SKIP 65 | PASS 4492 ] Error: Test failures Execution halted Flavor: r-oldrel-macos-arm64

Version: 2.1.4
Check: whether package can be installed
Result: WARN Found the following significant warnings: D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/winnt.h:8404:37: warning: ISO C++ forbids flexible array member 'Elements' [-Wpedantic] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/winnt.h:8667:22: warning: ISO C++ forbids flexible array member 'pEventLogRecords' [-Wpedantic] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/winnt.h:8673:13: warning: ISO C++ forbids flexible array member 'ulOffsets' [-Wpedantic] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/minwindef.h:196:3: warning: function declaration isn't a prototype [-Wstrict-prototypes] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/minwindef.h:197:3: warning: function declaration isn't a prototype [-Wstrict-prototypes] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/minwindef.h:198:3: warning: function declaration isn't a prototype [-Wstrict-prototypes] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/processthreadsapi.h:130:47: warning: ISO C does not allow extra ';' outside of a function [-Wpedantic] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/rpcndr.h:451:3: warning: function declaration isn't a prototype [-Wstrict-prototypes] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/urlmon.h:1333:24: warning: ISO C restricts enumerator values to range of 'int' [-Wpedantic] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/urlmon.h:1745:25: warning: ISO C restricts enumerator values to range of 'int' [-Wpedantic] D:/rtools43/usr/lib/mxe/usr/x86_64-w64-mingw32.static.posix/include/winioctl.h:359:11: warning: ISO C forbids zero-size array 'SerialNumber' [-Wpedantic] See 'd:/Rcompile/CRANpkg/local/4.3/igraph.Rcheck/00install.out' for details. * used C compiler: 'gcc.exe (GCC) 12.3.0' * used C++ compiler: 'g++.exe (GCC) 12.3.0' Flavor: r-oldrel-windows-x86_64

Package kimisc

Current CRAN status: OK: 15

Package mockr

Current CRAN status: OK: 15

Package pillar

Current CRAN status: OK: 15

Package procmaps

Current CRAN status: OK: 15

Package profile

Current CRAN status: NOTE: 3, OK: 12

Version: 1.0.3
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: validate_profile.Rd: tibble Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Package RMariaDB

Current CRAN status: NOTE: 4, OK: 11

Additional issues

rchk

Version: 1.3.3
Check: installed package size
Result: NOTE installed size is 5.4Mb sub-directories of 1Mb or more: libs 4.9Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package roxygen2md

Current CRAN status: OK: 15

Package RPostgres

Current CRAN status: NOTE: 9, OK: 6

Additional issues

rchk

Version: 1.4.7
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: postgres-query.Rd: dbConnect, dbGetRowsAffected postgres-tables.Rd: dbAppendTable, dbWriteTable, dbQuoteIdentifier, SQL postgresHasDefault.Rd: dbConnect postgresIsTransacting.Rd: dbBegin Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Version: 1.4.7
Check: installed package size
Result: NOTE installed size is 7.5Mb sub-directories of 1Mb or more: libs 7.0Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package rprojroot

Current CRAN status: OK: 15

Package RSQLite

Current CRAN status: NOTE: 4, OK: 11

Additional issues

rchk

Version: 2.3.9
Check: installed package size
Result: NOTE installed size is 12.5Mb sub-directories of 1Mb or more: libs 11.7Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package tibble

Current CRAN status: NOTE: 7, OK: 8

Version: 3.2.1
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: deprecated.Rd: quasiquotation formatting.Rd: tbl_format_setup frame_matrix.Rd: !!, !!!, quasiquotation lst.Rd: !!, !!!, .data, .env subsetting.Rd: vec_slice tibble.Rd: !!, !!!, .data, .env, quasiquotation tribble.Rd: !!, !!!, quasiquotation Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Version: 3.2.1
Check: compiled code
Result: NOTE File ‘tibble/libs/tibble.so’: Found non-API call to R: ‘SET_S4_OBJECT’ Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual, and section ‘Moving into C API compliance’ for issues with the use of non-API entry points. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-macos-arm64, r-devel-macos-x86_64

Version: 3.2.1
Check: compiled code
Result: NOTE File 'tibble/libs/x64/tibble.dll': Found non-API call to R: 'SET_S4_OBJECT' Compiled code should not call non-API entry points in R. See 'Writing portable packages' in the 'Writing R Extensions' manual, and section 'Moving into C API compliance' for issues with the use of non-API entry points. Flavor: r-devel-windows-x86_64

Package utf8

Current CRAN status: OK: 15

Package winch

Current CRAN status: OK: 15

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.