Skip to content

Commit

Permalink
Merge pull request #222 from pascal-sauer/master
Browse files Browse the repository at this point in the history
copy.mode = F
  • Loading branch information
mscrawford authored Jan 13, 2025
2 parents aedf620 + 9edf651 commit d2ba8fc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .buildlibrary
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ValidationKey: '9877884'
ValidationKey: '9909793'
AutocreateReadme: yes
AutocreateCITATION: yes
AcceptedWarnings:
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ cff-version: 1.2.0
message: If you use this software, please cite it using the metadata from this file.
type: software
title: 'lucode2: Code Manipulation and Analysis Tools'
version: 0.49.2
date-released: '2024-12-20'
version: 0.49.3
date-released: '2025-01-13'
abstract: A collection of tools which allow to manipulate and analyze code.
authors:
- family-names: Dietrich
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Type: Package
Package: lucode2
Title: Code Manipulation and Analysis Tools
Version: 0.49.2
Date: 2024-12-20
Version: 0.49.3
Date: 2025-01-13
Authors@R: c(
person("Jan Philipp", "Dietrich", , "[email protected]", role = c("aut", "cre"),
comment = c(affiliation = "Potsdam Institute for Climate Impact Research", ORCID = "0000-0002-4309-6431")),
Expand Down
4 changes: 3 additions & 1 deletion R/conditionalCopy.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ conditionalCopy <- function(relativePath, nameInInstExtdata = basename(relativeP
}
file.copy(relativePath, instExtdataPath, overwrite = TRUE)
} else {
file.copy(system.file("extdata", nameInInstExtdata, package = "lucode2"), relativePath, overwrite = TRUE)
# copy.mode = FALSE because in case lucode2 is loaded from renv cache where files have no write permission
file.copy(system.file("extdata", nameInInstExtdata, package = "lucode2"), relativePath,
overwrite = TRUE, copy.mode = FALSE)
}
return(invisible(NULL))
}
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Code Manipulation and Analysis Tools

R package **lucode2**, version **0.49.2**
R package **lucode2**, version **0.49.3**

[![CRAN status](https://www.r-pkg.org/badges/version/lucode2)](https://cran.r-project.org/package=lucode2) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4389418.svg)](https://doi.org/10.5281/zenodo.4389418) [![R build status](https://github.com/pik-piam/lucode2/workflows/check/badge.svg)](https://github.com/pik-piam/lucode2/actions) [![codecov](https://codecov.io/gh/pik-piam/lucode2/branch/master/graph/badge.svg)](https://app.codecov.io/gh/pik-piam/lucode2) [![r-universe](https://pik-piam.r-universe.dev/badges/lucode2)](https://pik-piam.r-universe.dev/builds)

Expand Down Expand Up @@ -39,7 +39,7 @@ In case of questions / problems please contact Jan Philipp Dietrich <dietrich@pi

To cite package **lucode2** in publications use:

Dietrich J, Sauer P, Klein D, Giannousakis A, Bonsch M, Bodirsky B, Baumstark L, Richters O, Pflüger M (2024). "lucode2: Code Manipulation and Analysis Tools." doi:10.5281/zenodo.4389418 <https://doi.org/10.5281/zenodo.4389418>, Version: 0.49.2, <https://github.com/pik-piam/lucode2>.
Dietrich J, Sauer P, Klein D, Giannousakis A, Bonsch M, Bodirsky B, Baumstark L, Richters O, Pflüger M (2025). "lucode2: Code Manipulation and Analysis Tools." doi:10.5281/zenodo.4389418 <https://doi.org/10.5281/zenodo.4389418>, Version: 0.49.3, <https://github.com/pik-piam/lucode2>.

A BibTeX entry for LaTeX users is

Expand All @@ -48,9 +48,9 @@ A BibTeX entry for LaTeX users is
title = {lucode2: Code Manipulation and Analysis Tools},
author = {Jan Philipp Dietrich and Pascal Sauer and David Klein and Anastasis Giannousakis and Markus Bonsch and Benjamin Leon Bodirsky and Lavinia Baumstark and Oliver Richters and Mika Pflüger},
doi = {10.5281/zenodo.4389418},
date = {2024-12-20},
year = {2024},
date = {2025-01-13},
year = {2025},
url = {https://github.com/pik-piam/lucode2},
note = {Version: 0.49.2},
note = {Version: 0.49.3},
}
```

0 comments on commit d2ba8fc

Please sign in to comment.