Skip to content

Commit 9e1b66f

Browse files
Fix support status
* 17 and 20 are supported * darwin-aarch64 is supported
1 parent a81ecbe commit 9e1b66f

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

sdk/mx.sdk/mx_sdk_vm_impl.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2399,17 +2399,13 @@ def _format_properties(data):
23992399

24002400

24012401
def _get_component_stability(component):
2402-
if _src_jdk_version not in (11, 17):
2403-
return "experimental"
2404-
if mx.is_darwin() and mx.get_arch() == 'aarch64':
2402+
if _src_jdk_version not in (17, 20):
24052403
return "experimental"
24062404
return component.stability
24072405

24082406

24092407
def _get_core_stability():
2410-
if _src_jdk_version not in (11, 17):
2411-
return "experimental"
2412-
if mx.is_darwin() and mx.get_arch() == 'aarch64':
2408+
if _src_jdk_version not in (17, 20):
24132409
return "experimental"
24142410
return "supported"
24152411

0 commit comments

Comments
 (0)