Skip to content

Commit 0ff057e

Browse files
committed
Upgrade R to 4.4.2
Released on 2024-10-31.
1 parent dd097a2 commit 0ff057e

File tree

1 file changed

+4
-2
lines changed
  • repo2docker/buildpacks

1 file changed

+4
-2
lines changed

repo2docker/buildpacks/r.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ def r_version(self):
6969
"""
7070
# Available versions at https://cran.r-project.org/src/base/
7171
version_map = {
72-
"4.2": "4.2.1",
72+
"4.4": "4.4.2",
73+
"4.3": "4.3.3",
74+
"4.2": "4.2.3",
7375
"4.1": "4.1.3",
7476
"4.0": "4.0.5",
7577
"3.6": "3.6.3",
@@ -85,7 +87,7 @@ def r_version(self):
8587
# - tests/unit/test_r.py -> test_version_specification
8688
# - tests/r/r-rspm-apt/verify
8789
#
88-
r_version = version_map["4.2"]
90+
r_version = version_map["4.4"]
8991

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

0 commit comments

Comments
 (0)