File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 20
20
config :
21
21
- {os: macos-latest, r: 'release'}
22
22
23
+ - {os: windows-latest, r: 'devel'}
23
24
- {os: windows-latest, r: 'release'}
24
- # Use 3.6 to trigger usage of RTools35
25
- - {os: windows-latest, r: '3.6'}
26
25
# use 4.1 to check with rtools40's older compiler
27
26
- {os: windows-latest, r: '4.1'}
28
27
56
55
- uses : r-lib/actions/check-r-package@v2
57
56
with :
58
57
upload-snapshots : true
59
- error-on : ' ifelse(getRversion() > "3.6", "warning", " note") '
58
+ error-on : ' " note"'
60
59
env :
61
60
_R_CHECK_FORCE_SUGGESTS_ : false
62
61
_R_CHECK_STOP_ON_INVALID_NUMERIC_VERSION_INPUTS_ : true
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ License: MIT + file LICENSE
23
23
URL: https://github.com/r-lib/styler, https://styler.r-lib.org
24
24
BugReports: https://github.com/r-lib/styler/issues
25
25
Depends:
26
- R (>= 3.6 .0)
26
+ R (>= 4.0 .0)
27
27
Imports:
28
28
cli (>= 3.1.1),
29
29
magrittr (>= 2.0.0),
Original file line number Diff line number Diff line change @@ -87,8 +87,6 @@ tokenize <- function(text) {
87
87
# ' @param ... Other arguments passed to [utils::getParseData()].
88
88
# ' @keywords internal
89
89
get_parse_data <- function (text , include_text = TRUE , ... ) {
90
- # avoid https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16041
91
- parse_safely(text , keep.source = TRUE )
92
90
parsed <- parse_safely(text , keep.source = TRUE )
93
91
pd <- utils :: getParseData(parsed , includeText = include_text ) %> %
94
92
styler_df()
You can’t perform that action at this time.
0 commit comments