Skip to content

Commit

Permalink
Fix Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FBerding committed Apr 10, 2024
1 parent f613995 commit fb33c61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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 @@ -66,7 +66,7 @@ jobs:
conda_install(
packages = c(
"tensorflow-cpu<=2.15",
"tensorflow<=2.15",
"torch",
"torcheval",
"safetensors",
Expand Down
2 changes: 1 addition & 1 deletion R/install_and_config.R
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ install_py_modules<-function(envname="aifeducation",
conda = "auto",
pip = TRUE)
} else {
if(utils::compareVersion(tf_version,"2.15")<=0){
if(utils::compareVersion(tf_version,"2.16")<0){
reticulate::conda_install(
packages = c(
paste0("tensorflow<=",tf_version)),
Expand Down

0 comments on commit fb33c61

Please sign in to comment.