Skip to content

Commit

Permalink
Fix Python deps install on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed May 2, 2024
1 parent c48d4d9 commit b3d0a47
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ jobs:

- name: Install Python packages for testing
run: |
dir.create("~/.pip", showWarnings = FALSE, recursive = TRUE)
writeLines(
c("[global]", "break-system-packages = true", user = "true"),
"~/.pip/pip.conf"
)
if (Sys.which("pip3") != "") {
system("pip3 install pyarrow pandas")
} else {
Expand Down

0 comments on commit b3d0a47

Please sign in to comment.