Skip to content

Commit 68de46c

Browse files
authored
Merge pull request #14 from stan-dev/adds_pymc_version
Adds pymc as supported framework in tests
2 parents 8b14f8e + 35ad08a commit 68de46c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

R/model_code.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,10 @@ framework.pdb_model_code <- function(x){
174174
x
175175
}
176176

177-
supported_frameworks <- function() c("stan", "pymc3", "tfp", "pyro")
177+
supported_frameworks <- function() c("stan", "pymc3", "pymc", "tfp", "pyro")
178178

179179
supported_frameworks_file_extension <- function(x){
180180
checkmate::assert_choice(x, choices = supported_frameworks())
181-
sffe <- c("stan"="stan", "pymc3"="py", "tfp"="py", "pyro"="py")
181+
sffe <- c("stan"="stan", "pymc3"="py", "pymc"="py", "tfp"="py", "pyro"="py")
182182
sffe[x]
183183
}

0 commit comments

Comments
 (0)