We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a81ecbe commit 9e1b66fCopy full SHA for 9e1b66f
sdk/mx.sdk/mx_sdk_vm_impl.py
@@ -2399,17 +2399,13 @@ def _format_properties(data):
2399
2400
2401
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':
+ if _src_jdk_version not in (17, 20):
2405
return "experimental"
2406
return component.stability
2407
2408
2409
def _get_core_stability():
2410
2411
2412
2413
2414
return "supported"
2415
0 commit comments