Skip to content

Commit cd3ed84

Browse files
committed
Disable oldrel-4; roxygen stuff
1 parent 009f44e commit cd3ed84

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- {os: ubuntu-latest, r: 'oldrel-1'}
3636
- {os: ubuntu-latest, r: 'oldrel-2'}
3737
- {os: ubuntu-latest, r: 'oldrel-3'}
38-
- {os: ubuntu-latest, r: 'oldrel-4'}
38+
# - {os: ubuntu-latest, r: 'oldrel-4'} # dependency issues with oldrel-4
3939

4040
env:
4141
VISUAL_TESTS: ${{ matrix.config.visual_tests }}

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Suggests:
7878
rsvg,
7979
ggridges
8080
LazyData: true
81-
RoxygenNote: 7.3.1
81+
RoxygenNote: 7.3.2
8282
Encoding: UTF-8
8383
Roxygen: list(markdown = TRUE)
8484
Config/Needs/check:

NAMESPACE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ S3method(print,api_grid_local)
4040
S3method(print,api_plot)
4141
S3method(print,kaleidoScope)
4242
S3method(print,plotly_data)
43+
S3method(process,api_image)
44+
S3method(process,api_plot)
45+
S3method(process,default)
4346
S3method(to_basic,GeomAbline)
4447
S3method(to_basic,GeomAlluvium)
4548
S3method(to_basic,GeomAnnotationMap)

R/process.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ process <- function(resp) {
66
UseMethod("process")
77
}
88

9+
#' @export
910
process.default <- function(resp) {
1011
json_content(relay_error(resp))
1112
}
1213

14+
#' @export
1315
process.api_plot <- function(resp) {
1416
json_content(relay_error(resp))
1517
}
1618

19+
#' @export
1720
process.api_image <- function(resp) {
1821
relay_error(resp)
1922
type <- resp[["headers"]][["content-type"]]

0 commit comments

Comments
 (0)