Skip to content

Commit

Permalink
allow rc and alpha builds of Julia
Browse files Browse the repository at this point in the history
  • Loading branch information
yjunechoe committed Jul 11, 2023
1 parent f87dd27 commit b179a8f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# jlmerclusterperm 1.0.2

### Bug fixes

- `jlmerclusterperm_setup()` now works for rc and alpha builds of Julia

# jlmerclusterperm 1.0.1

`jlmerclusterperm_setup()` now exits early if Julia version requirement (>=1.8) is not met.
Expand Down
2 changes: 1 addition & 1 deletion R/aaa.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# Helpers
julia_version_compatible <- function() {
julia_version <- gsub("julia version ", "", system2("julia", "--version", stdout = TRUE))
julia_version <- gsub("^.*(\\d+\\.\\d+\\.\\d+).*$", "\\1", system2("julia", "--version", stdout = TRUE))
as.package_version(julia_version) >= 1.8
}
is_setup <- function() isTRUE(.jlmerclusterperm$is_setup)
Expand Down
8 changes: 8 additions & 0 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b179a8f

Please sign in to comment.