Skip to content

Commit

Permalink
Update msprime to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bodkan committed Feb 21, 2024
1 parent a4a2298 commit dcb83d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ jobs:
run: |
install.packages("reticulate", repos = "http://cran.rstudio.com")
reticulate::install_miniconda()
deps <- c("msprime==1.3.0", "tskit==0.5.6", "pyslim==1.0.4")
deps <- c("msprime==1.3.1", "tskit==0.5.6", "pyslim==1.0.4")
PYTHON_ENV <- paste0("Python-3.12_", paste(gsub("==", "-", c(deps, "tspop==0.0.2")), collapse = "_"))
reticulate::conda_create(envname = PYTHON_ENV, python_version = '3.11')
reticulate::use_condaenv(PYTHON_ENV, required = TRUE)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
run: |
install.packages("reticulate", repos = "http://cran.rstudio.com")
reticulate::install_miniconda()
deps <- c("msprime==1.3.0", "tskit==0.5.6", "pyslim==1.0.4")
deps <- c("msprime==1.3.1", "tskit==0.5.6", "pyslim==1.0.4")
PYTHON_ENV <- paste0("Python-3.12_", paste(gsub("==", "-", c(deps, "tspop==0.0.2")), collapse = "_"))
reticulate::conda_create(envname = PYTHON_ENV, python_version = '3.11')
reticulate::use_condaenv(PYTHON_ENV, required = TRUE)
Expand Down
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tspop <- NULL
# define slendr's required Python dependencies and compose an environment name
# that will be used specifically for them
PYTHON_ENV <-
c("msprime==1.3.0", "tskit==0.5.6", "pyslim==1.0.4", "tspop==0.0.2") %>%
c("msprime==1.3.1", "tskit==0.5.6", "pyslim==1.0.4", "tspop==0.0.2") %>%
gsub("==", "-", .) %>%
paste(collapse = "_") %>%
paste0("Python-3.12_", .)
Expand Down

0 comments on commit dcb83d5

Please sign in to comment.