Skip to content

Commit e539c8a

Browse files
from |> to %>% (#122)
* from |> to %>% * remove oldrel-4
1 parent d51ffd8 commit e539c8a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727

2828
- {os: windows-latest, r: 'release'}
2929
# use 4.0 or 4.1 to check with rtools40's older compiler
30-
- {os: windows-latest, r: 'oldrel-4'}
30+
3131

3232
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
3333
- {os: ubuntu-latest, r: 'release'}
3434
- {os: ubuntu-latest, r: 'oldrel-1'}
3535
- {os: ubuntu-latest, r: 'oldrel-2'}
3636
- {os: ubuntu-latest, r: 'oldrel-3'}
37-
- {os: ubuntu-latest, r: 'oldrel-4'}
37+
3838

3939
env:
4040
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

R/att_from_data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ att_from_data <- function(chr) {
1313
str_extract_all(
1414
chr,
1515
'(?<=data\\(\\".{1,100}\\"\\,\\s{0,5}package\\s{0,5}\\=\\s{0,5}\\\")[[:alnum:]\\.]+(?=\\\"\\))'
16-
) |>
16+
) %>%
1717
unlist()
1818
return(pkg)
1919

0 commit comments

Comments
 (0)