dara-core 1.16.5__py3-none-any.whl → 1.16.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -402,6 +402,13 @@ def _py_version_to_js(package_name: str) -> str:
402
402
  # Handle pre releases (a|b|c|rc|alpha|beta|pre|preview)
403
403
  if parsed_version.is_prerelease and parsed_version.pre is not None:
404
404
  pre_name, pre_version = parsed_version.pre
405
+
406
+ # js names created are full alpha/beta
407
+ if pre_name == 'a':
408
+ pre_name = 'alpha'
409
+ elif pre_name == 'b':
410
+ pre_name = 'beta'
411
+
405
412
  return f'{parsed_version.base_version}-{pre_name}.{pre_version}'
406
413
 
407
414
  # Handle dev releases (dev)