mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
[hotfix] [runtime env] change MacOS wheel URL from 10_13 to 10_15 (#17902)
This commit is contained in:
parent
b9dae93bfa
commit
7e109a3266
2 changed files with 4 additions and 8 deletions
|
@ -1050,8 +1050,8 @@ def get_wheel_filename(
|
||||||
" '37', or '38'")
|
" '37', or '38'")
|
||||||
|
|
||||||
os_strings = {
|
os_strings = {
|
||||||
"darwin": "macosx_10_13_x86_64"
|
"darwin": "macosx_10_15_x86_64"
|
||||||
if py_version == "38" else "macosx_10_13_intel",
|
if py_version == "38" else "macosx_10_15_intel",
|
||||||
"linux": "manylinux2014_x86_64",
|
"linux": "manylinux2014_x86_64",
|
||||||
"win32": "win_amd64"
|
"win32": "win_amd64"
|
||||||
}
|
}
|
||||||
|
|
|
@ -673,7 +673,7 @@ def test_get_wheel_filename():
|
||||||
|
|
||||||
def test_get_master_wheel_url():
|
def test_get_master_wheel_url():
|
||||||
ray_version = "2.0.0.dev0"
|
ray_version = "2.0.0.dev0"
|
||||||
test_commit = "ba6cebe30fab6925e5b2d9e859ad064d53015246"
|
test_commit = "58a73821fbfefbf53a19b6c7ffd71e70ccf258c7"
|
||||||
for sys_platform in ["darwin", "linux", "win32"]:
|
for sys_platform in ["darwin", "linux", "win32"]:
|
||||||
for py_version in ["36", "37", "38"]:
|
for py_version in ["36", "37", "38"]:
|
||||||
url = get_master_wheel_url(test_commit, sys_platform, ray_version,
|
url = get_master_wheel_url(test_commit, sys_platform, ray_version,
|
||||||
|
@ -682,11 +682,7 @@ def test_get_master_wheel_url():
|
||||||
|
|
||||||
|
|
||||||
def test_get_release_wheel_url():
|
def test_get_release_wheel_url():
|
||||||
test_commits = {
|
test_commits = {"1.6.0": "5052fe67d99f1d4bfc81b2a8694dbf2aa807bbdc"}
|
||||||
"1.4.0rc1": "e7c7f6371a69eb727fa469e4cd6f4fbefd143b4c",
|
|
||||||
"1.3.0": "0b4b444fadcdc23226e11fef066b982175804232",
|
|
||||||
"1.2.0": "1b1a2496ca51b745c07c79fb859946d3350d471b"
|
|
||||||
}
|
|
||||||
for sys_platform in ["darwin", "linux", "win32"]:
|
for sys_platform in ["darwin", "linux", "win32"]:
|
||||||
for py_version in ["36", "37", "38"]:
|
for py_version in ["36", "37", "38"]:
|
||||||
for version, commit in test_commits.items():
|
for version, commit in test_commits.items():
|
||||||
|
|
Loading…
Add table
Reference in a new issue