Update R 4.2 from 4.2.0 to 4.2.1 and fix tests

pull/1165/head
Erik Sundell 2022-10-08 14:03:30 +02:00
rodzic 0b76608208
commit fc08ee1c58
2 zmienionych plików z 8 dodań i 2 usunięć

Wyświetl plik

@ -63,8 +63,9 @@ class RBuildPack(PythonBuildPack):
Will return the version specified by the user or the current default
version.
"""
# Available versions at https://cran.r-project.org/src/base/
version_map = {
"4.2": "4.2.0",
"4.2": "4.2.1",
"4.1": "4.1.3",
"4.0": "4.0.5",
"3.6": "3.6.3",
@ -75,6 +76,11 @@ class RBuildPack(PythonBuildPack):
# the default if nothing is specified
# Use full version is needed here, so it a valid semver
#
# NOTE: When updating this version, also update
# - tests/unit/test_r.py -> test_version_specification
# - tests/r/simple/verify
#
r_version = version_map["4.2"]
if not hasattr(self, "_r_version"):

Wyświetl plik

@ -8,7 +8,7 @@ from repo2docker import buildpacks
@pytest.mark.parametrize(
"runtime_version, expected", [("", "4.1"), ("3.6", "3.6"), ("3.5.1", "3.5")]
"runtime_version, expected", [("", "4.2"), ("3.6", "3.6"), ("3.5.1", "3.5")]
)
def test_version_specification(tmpdir, runtime_version, expected):
tmpdir.chdir()