We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2124a03 commit 732fc2eCopy full SHA for 732fc2e
DESCRIPTION
@@ -1,5 +1,5 @@
1
Package: parallelly
2
-Version: 1.46.1-9019
+Version: 1.46.1-9020
3
Title: Enhancing the 'parallel' Package
4
Imports:
5
parallel,
R/utils.R
@@ -132,7 +132,7 @@ assert_system_is_supported <- local({
132
## utils::osVersion is only available in R (>= 3.5.0)
133
osVersion <- function() {
134
ns <- getNamespace("utils")
135
- if (!exists("osVersion", envir = ns, inherits = TRUE)) {
+ if (exists("osVersion", envir = ns, inherits = TRUE)) {
136
osVersion <- get("osVersion", envir = ns, inherits = TRUE)
137
osVersion
138
} else {
0 commit comments