We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae8ed29 commit 0b76608Copy full SHA for 0b76608
repo2docker/buildpacks/r.py
@@ -75,7 +75,7 @@ def r_version(self):
75
76
# the default if nothing is specified
77
# Use full version is needed here, so it a valid semver
78
- r_version = version_map["4.1"]
+ r_version = version_map["4.2"]
79
80
if not hasattr(self, "_r_version"):
81
parts = self.runtime.split("-")
tests/r/simple/verify
@@ -1,7 +1,7 @@
1
#!/usr/bin/env Rscript
2
library('testthat')
3
4
-# Fail if version is not 4.1
5
-if (!(version$major == "4" && as.double(version$minor) >= 1 && as.double(version$minor) < 2)) {
+# Fail if version is not 4.2
+if (!(version$major == "4" && as.double(version$minor) >= 2 && as.double(version$minor) < 3)) {
6
quit("yes", 1)
7
}
0 commit comments