We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a94dd8b commit b47c33eCopy full SHA for b47c33e
.github/workflows/R-CMD-check.yaml
@@ -74,7 +74,8 @@ jobs:
74
- name: Install kaleido
75
if: matrix.config.visual_tests == true
76
run: |
77
- Rscript -e 'library(reticulate); use_python(Sys.which("python")); py_install(c("kaleido", "plotly"))'
+ # We pin kaleido to v0.2.1 here since >=v1.0 doesn't appear to be correctly rendering some plots
78
+ Rscript -e 'library(reticulate); use_python(Sys.which("python")); py_install(c("kaleido==0.2.1", "plotly"))'
79
80
# Run test() before R CMD check since, for some reason, rcmdcheck::rcmdcheck() skips vdiffr tests
81
- name: Run Tests
0 commit comments