Skip to content

Commit 40cfa18

Browse files
committed
Simplify installation of reticulate
1 parent 1e260eb commit 40cfa18

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

.github/workflows/pytest.yaml

+1-21
Original file line numberDiff line numberDiff line change
@@ -95,28 +95,8 @@ jobs:
9595
run: uv pip install .[docs]
9696

9797
- name: Install R dependencies and tutorial requirements
98-
# Workaround for https://github.com/actions/runner-images/issues/11137
99-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12' }}
10098
run: |
101-
install.packages(c("remotes", "Rcpp"))
102-
remotes::install_cran(
103-
c("IRkernel", "reticulate"),
104-
dependencies = TRUE,
105-
# force = TRUE,
106-
)
107-
108-
reticulate::py_config()
109-
shell: Rscript {0}
110-
111-
- name: Install R dependencies and tutorial requirements
112-
if: ${{ ! (matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12') }}
113-
run: |
114-
install.packages(c("remotes", "Rcpp"))
115-
remotes::install_cran(
116-
c("IRkernel", "reticulate"),
117-
dependencies = TRUE,
118-
# force = TRUE,
119-
)
99+
install.packages(c("IRkernel", "reticulate"))
120100
121101
# commented: for debugging
122102
# print(reticulate::py_config())

0 commit comments

Comments
 (0)