Hi there, we are releasing dplyr 1.2.0 this Monday and your package was recently flagged in our final round of reverse dependency checks. Sorry we weren't able to get this to you sooner.
You'll need to send an update of your package to CRAN soon, and you'll likely receive an email from CRAN about this after dplyr 1.2.0 makes it to CRAN.
It will likely take 1 week or so for dplyr to make it to CRAN, and CRAN should give you at least 2 additional weeks to make this change.
It looks like you use mutate_(), which was deprecated in dplyr 0.7.0 and is now defunct. Please use mutate() instead (or maybe remove these tests entirely?)
## Newly broken
* checking tests ... ERROR
```
...
[ FAIL 1 | WARN 0 | SKIP 0 | PASS 409 ]
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-utils.R:33:3'): dplyr functions return panel_data objects ──────
<lifecycle_error_deprecated/defunctError/rlang_error/error/condition>
Error: `mutate_()` was deprecated in dplyr 0.7.0 and is now defunct.
ℹ Please use `mutate()` instead.
ℹ See vignette('programming') for more help
Backtrace:
▆
1. ├─base::suppressWarnings(...) at test-utils.R:32:3
2. │ └─base::withCallingHandlers(...)
3. ├─testthat::expect_s3_class(mutate_(w, gender = "fem"), "panel_data") at test-utils.R:33:3
4. │ └─testthat::quasi_label(enquo(object))
5. │ └─rlang::eval_bare(expr, quo_get_env(quo))
6. └─dplyr::mutate_(w, gender = "fem")
7. └─dplyr:::lazy_defunct("mutate")
8. └─lifecycle::deprecate_stop(...)
9. └─lifecycle:::deprecate_stop0(msg)
10. └─rlang::cnd_signal(...)
[ FAIL 1 | WARN 0 | SKIP 0 | PASS 409 ]
Error:
! Test failures.
Execution halted
```
Hi there, we are releasing dplyr 1.2.0 this Monday and your package was recently flagged in our final round of reverse dependency checks. Sorry we weren't able to get this to you sooner.
You'll need to send an update of your package to CRAN soon, and you'll likely receive an email from CRAN about this after dplyr 1.2.0 makes it to CRAN.
It will likely take 1 week or so for dplyr to make it to CRAN, and CRAN should give you at least 2 additional weeks to make this change.
It looks like you use
mutate_(), which was deprecated in dplyr 0.7.0 and is now defunct. Please usemutate()instead (or maybe remove these tests entirely?)