Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: invalid version specification ‘6003’ #1597

Closed
JohnCoene opened this issue Mar 30, 2022 · 2 comments
Closed

Error: invalid version specification ‘6003’ #1597

JohnCoene opened this issue Mar 30, 2022 · 2 comments

Comments

@JohnCoene
Copy link

JohnCoene commented Mar 30, 2022

I keep getting the most curious error message.

In a package, I have the following class.
Note the issue with the constructor.

Counter <- R6::R6Class(
  "Counter",
  public = list(
    x = 0L, 
    # no default value for `x`
    initialize = function(x){
      self$x <- x
    },
    inc = function(){
      self$x <- self$x + 1
    }
  )
)
devtools::load_all()
Counter$new()
 #> Error in initialize(...) : argument "x" is missing, with no default

In my test file

test_that("counter", {
  obj <- Counter$new()
})

This should fail obviously.

#> devtools::test()                                                                                  Loading testingTesting testing| F W S  OK | Context| 1       0 | counter                                                                                  
───────────────────────────────────────────────────
Error: invalid version specification6003
@JohnCoene
Copy link
Author

JohnCoene commented Mar 30, 2022

I think the issue is broader than this but the above example is one way I found to reproduce it.

r$> sessioninfo::session_info()                                                                       
─ Session info ─────────────────────────────────────────────────────────────────────────────────────
 setting  value
 version  R version 4.1.3 (2022-03-10)
 os       Linux Mint 20.3
 system   x86_64, linux-gnu
 ui       X11
 language en_US
 collate  en_US.UTF-8
 ctype    en_US.UTF-8
 tz       Europe/Zurich
 date     2022-03-30
 pandoc   2.5 @ /usr/bin/pandocPackages ─────────────────────────────────────────────────────────────────────────────────────────
 package     * version    date (UTC) lib source
 callr         3.7.0      2021-04-20 [1] CRAN (R 4.1.2)
 cli           3.2.0      2022-02-14 [1] CRAN (R 4.1.2)
 crayon        1.5.1      2022-03-26 [1] CRAN (R 4.1.3)
 curl          4.3.2      2021-06-23 [1] CRAN (R 4.1.2)
 pkgbuild      1.3.1      2021-12-20 [1] CRAN (R 4.1.2)
 prettyunits   1.1.1      2020-01-24 [1] CRAN (R 4.1.2)
 processx      3.5.3      2022-03-25 [1] CRAN (R 4.1.3)
 ps            1.6.0      2021-02-28 [1] CRAN (R 4.1.2)
 R6            2.5.1.9000 2022-03-30 [1] Github (r-lib/R6@97d1c35)
 remotes       2.4.2      2021-11-30 [1] CRAN (R 4.1.2)
 rprojroot     2.0.2      2020-11-15 [1] CRAN (R 4.1.2)
 sessioninfo   1.2.2.9000 2022-03-30 [1] Github (r-lib/sessioninfo@27965c2)
 withr         2.5.0      2022-03-03 [1] CRAN (R 4.1.2)

 [1] /home/john/R/x86_64-pc-linux-gnu-library/4.1
 [2] /usr/local/lib/R/site-library
 [3] /usr/lib/R/site-library
 [4] /usr/lib/R/library

────────────────────────────────────────────────────```

@JohnCoene
Copy link
Author

Apologies, this does not seem reproducible.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant