Skip to content

Commit 6cb5210

Browse files
committed
Upgrade R to 4.4.2
Released on 2024-10-31.
1 parent 09b056e commit 6cb5210

File tree

1 file changed

+3
-3
lines changed
  • repo2docker/buildpacks

1 file changed

+3
-3
lines changed

repo2docker/buildpacks/r.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ def r_version(self):
6969
"""
7070
# Available versions at https://cran.r-project.org/src/base/
7171
version_map = {
72-
"4.4": "4.4.1",
72+
"4.4": "4.4.2",
7373
"4.3": "4.3.3",
74-
"4.2": "4.2.1",
74+
"4.2": "4.2.3",
7575
"4.1": "4.1.3",
7676
"4.0": "4.0.5",
7777
"3.6": "3.6.3",
@@ -87,7 +87,7 @@ def r_version(self):
8787
# - tests/unit/test_r.py -> test_version_specification
8888
# - tests/r/r-rspm-apt/verify
8989
#
90-
r_version = version_map["4.2"]
90+
r_version = version_map["4.4"]
9191

9292
if not hasattr(self, "_r_version"):
9393
parts = self.runtime.split("-")

0 commit comments

Comments
 (0)