Skip to content

Commit

Permalink
Update version map following Bioconductor 3.20 release
Browse files Browse the repository at this point in the history
  • Loading branch information
grimbough committed Oct 31, 2024
1 parent a88ffe9 commit 9f57ddd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions setup-bioc/bioc-version-map.csv
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ bioc_version,bioc_version_explicit,r_version,rtools
3.18,3.18,4.3,43
3.19,3.19,4.4,44
3.20,3.20,4.4,44
3.21,3.21,4.5,44
3.21,3.21,devel,44
release,3.20,4.4,44
devel,3.21,4.5,44
devel,3.21,devel,44
8 changes: 4 additions & 4 deletions setup-bioc/create-version-map.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ bioc_version_explicit <- c(as.character(map$Bioc),

## assign appropriate Rtools version
rtools <- rep("35", length(r_version))
rtools[ r_version >= 4.0 & r_version <= 4.1 ] <- "40"
rtools[ r_version == 4.2 ] <- "42"
rtools[ r_version == 4.3 ] <- "43"
rtools[ r_version >= 4.4 ] <- "44"
rtools[ r_version >= package_version('4.0') & r_version <= package_version('4.1') ] <- "40"
rtools[ r_version == package_version('4.2') ] <- "42"
rtools[ r_version == package_version('4.3') ] <- "43"
rtools[ r_version >= package_version('4.4') ] <- "44"

res <- data.frame(
bioc_version,
Expand Down

0 comments on commit 9f57ddd

Please sign in to comment.