Skip to content

Commit

Permalink
Try fixing python to version 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
csoneson committed Nov 2, 2023
1 parent e91450f commit 55a3ac3
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/test-basiliskStart-fallback.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.bioc }}
name: ${{ matrix.config.os }} (${{ matrix.config.bioc }})

strategy:
fail-fast: false
matrix:
config:
# - { os: macOS-latest, bioc: 'devel'}
# - { os: ubuntu-latest, bioc: 'devel'}
- { os: macOS-latest, bioc: 'release'}
- { os: ubuntu-latest, bioc: 'release'}
- { os: macOS-latest, bioc: '3.18'}
- { os: ubuntu-latest, bioc: '3.18'}
- { os: macOS-latest, bioc: '3.17'}
- { os: ubuntu-latest, bioc: '3.17'}

Expand Down Expand Up @@ -45,17 +45,19 @@ jobs:
run: |
library(basilisk)
library(basilisk.utils)
sessionInfo()
basilisk.utils::installConda()
basilisk::setBasiliskForceFallback(TRUE)
tmploc <- file.path(".", "my_package_A")
if (!file.exists(tmploc)) {
setupBasiliskEnv(tmploc, c('pandas=1.4.3'))
setupBasiliskEnv(tmploc, c('pandas=1.4.3', 'python=3.8'))
}
cl <- basiliskStart(tmploc, testload="pandas")
cl
.libPaths()
sessionInfo()
basiliskRun(proc = cl, function() sessionInfo())
shell: Rscript {0}

0 comments on commit 55a3ac3

Please sign in to comment.