Skip to content

Commit

Permalink
Merge pull request #125 from symengine/fix/cran-vignette-check
Browse files Browse the repository at this point in the history
fix cran check issues and bump version to 0.2.6
  • Loading branch information
Marlin-Na committed Feb 26, 2024
2 parents c573238 + 2aec504 commit 40bab49
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: symengine
Title: Interface to the 'SymEngine' Library
Version: 0.2.4
Version: 0.2.6
Authors@R: c(person("Jialin", "Ma", email="marlin@inventati.org", role = c("cre", "aut")),
person("Isuru", "Fernando", email="isuruf@gmail.com", role = c("aut")),
person("Xin", "Chen", email="xinchen.tju@gmail.com", role = c("aut")))
Expand Down Expand Up @@ -35,6 +35,7 @@ Encoding: UTF-8
LazyData: true
URL: https://github.com/symengine/symengine.R
BugReports: https://github.com/symengine/symengine.R/issues
Additional_repositories: https://Marlin-Na.github.io/drat
License: GPL (>= 2)
Copyright: The R package bundles the 'SymEngine' library source and its subcomponents
under 'src/upstream' directory. See file COPYRIGHTS for retained copyright notices
Expand Down
2 changes: 1 addition & 1 deletion R/dxdt.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ setMethod("show", signature = c(object = "DxdtOde"),
#' @rdname ODESystem
#' @export
#' @examples
#' \donttest{
#' \dontrun{
#' ## Lorenz system
#' use_vars(x, y, z)
#' sigma <- 10
Expand Down
2 changes: 1 addition & 1 deletion man/ODESystem.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions vignettes/odesystem.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ body {
}
</style>

```{r, eval=TRUE, include=FALSE}
if (!all(sapply(c("odeintr"), requireNamespace, quietly = TRUE)))
knitr::opts_chunk$set(eval = FALSE)
```

[odeintr](https://github.com/thk686/odeintr) by Timothy H. Keitt is an R package for
integrating differential equations with the
[Boost odeint library](https://headmyshoulder.github.io/odeint-v2/).
Expand Down

0 comments on commit 40bab49

Please sign in to comment.