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 8d916f4 commit d13330aCopy full SHA for d13330a
repo2docker/buildpacks/r.py
@@ -99,6 +99,9 @@ def r_version(self):
99
# available. Users can however explicitly specify the full version to get something specific
100
if r_version in version_map:
101
r_version = version_map[r_version]
102
+ elif len(r_version.split(".")) == 1:
103
+ # must have x.y.z version, add .0 for unrecognized (future) R versions
104
+ r_version += ".0"
105
106
# translate to the full version string
107
self._r_version = r_version
0 commit comments