Add support for julia 1.0.4 and 1.1.1 (#710)

Add support for julia 1.0.4 and 1.1.1
pull/712/head
Tim Head 2019-06-22 08:01:04 +02:00 zatwierdzone przez GitHub
commit 7019022ebf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 12 dodań i 3 usunięć

Wyświetl plik

@ -13,7 +13,16 @@ class JuliaProjectTomlBuildPack(PythonBuildPack):
# ALL EXISTING JULIA VERSIONS
# Note that these must remain ordered, in order for the find_semver_match()
# function to behave correctly.
all_julias = ["0.7.0", "1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.1.0"]
all_julias = [
"0.7.0",
"1.0.0",
"1.0.1",
"1.0.2",
"1.0.3",
"1.0.4",
"1.1.0",
"1.1.1",
]
@property
def julia_version(self):

Wyświetl plik

@ -8,8 +8,8 @@ class JuliaRequireBuildPack(PythonBuildPack):
Julia build pack which uses conda and REQUIRE.
"""
minor_julias = {"0.6": "0.6.4", "0.7": "0.7.0", "1.0": "1.0.3", "1.1": "1.1.0"}
major_julias = {"1": "1.1.0"}
minor_julias = {"0.6": "0.6.4", "0.7": "0.7.0", "1.0": "1.0.4", "1.1": "1.1.1"}
major_julias = {"1": "1.1.1"}
@property
def julia_version(self):