diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2022-09-14 22:39:12 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-09-14 22:39:12 +0200 |
commit | af24cde56a49b532d7f65dd199d176e0ce3cac09 (patch) | |
tree | a6b4d3c263ffee5014af941be9f21dc5cb34ac31 /DESCRIPTION | |
parent | 569a5790c2f8cca4dc6d8c5a53bd3b7a9f65441f (diff) |
Remove purrr dependency
We now directly import from rlang and vctrs, which were indirect
dependencies anyways. purrr::map_dfr is deprecated in the upcoming purrr
1.0, and depends on dplyr (since when?) which is only suggested by
purrr. This would lead new installations of mkin to fail if dplyr is not
installed as well.
Diffstat (limited to 'DESCRIPTION')
-rw-r--r-- | DESCRIPTION | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DESCRIPTION b/DESCRIPTION index 118ceaae..6734a43c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,7 +2,7 @@ Package: mkin Type: Package Title: Kinetic Evaluation of Chemical Degradation Data Version: 1.1.2 -Date: 2022-07-21 +Date: 2022-09-14 Authors@R: c( person("Johannes", "Ranke", role = c("aut", "cre", "cph"), email = "johannes.ranke@jrwb.de", @@ -24,7 +24,7 @@ Description: Calculation routines based on the FOCUS Kinetics Report (2006, purpose. Depends: R (>= 2.15.1), Imports: stats, graphics, methods, parallel, deSolve, R6, inline (>= 0.3.19), - numDeriv, lmtest, pkgbuild, nlme (>= 3.1-151), purrr, saemix (>= 3.1) + numDeriv, lmtest, pkgbuild, nlme (>= 3.1-151), saemix (>= 3.1), rlang, vctrs Suggests: knitr, rbenchmark, tikzDevice, testthat, rmarkdown, covr, vdiffr, benchmarkme, tibble, stats4 License: GPL |