Skip to content

Commit 4e4c2f7

Browse files
committed
revert usethis bug workaround now fixed upstream
1 parent eec1d7c commit 4e4c2f7

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

NEWS.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
## Maintenance
1313
* Drop dependency on futile.logger package, which has not been updated since 2016.
14+
* Revert usethis bug workaround from #162, now fixed upstream (#165)
1415

1516
# DataPackageR 0.16.1
1617

@@ -154,7 +155,6 @@
154155
# DataPackageR 0.15.0
155156
- Prepare for CRAN submission.
156157

157-
158158
# DataPackageR 0.14.9
159159

160160
- Moving towards rOpenSci compliance
@@ -164,7 +164,6 @@
164164
- Improved package test.
165165
- R scripts processed properly into vignettes.
166166
- Packages installed and loaded after build to make vignettes and data sets accessible in same R session.
167-
-
168167

169168
# DataPackageR 0.13.6
170169

R/skeleton.R

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,7 @@ datapackage_skeleton <-
6969
}
7070
package_path <- usethis::create_package(
7171
path = file.path(path, name),
72-
# fields override for usethis 3.0.0 ORCID placeholder, errors out in R 4.5
73-
# https://github.com/r-lib/usethis/issues/2059
74-
fields = list(
75-
`Authors@R` = paste0(
76-
"person(\"First\", \"Last\", email = \"first.last",
77-
"@example.com\", role = c(\"aut\", \"cre\"))"
78-
)
79-
), rstudio = FALSE, open = FALSE
72+
rstudio = FALSE, open = FALSE
8073
)
8174
# compatibility between usethis 1.4 and 1.5.
8275
if(is.character(package_path)){

0 commit comments

Comments
 (0)