* Add Studio web update and release version display * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Show package version in Studio settings * Break training unload guard barrel cycle --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Lee Jackson <130007945+Imagineer99@users.noreply.github.com>
11 lines
418 B
Python
11 lines
418 B
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
"""Build-stamped Studio release metadata.
|
|
|
|
Release builds may rewrite this module in the build workspace before creating
|
|
Python artifacts. Keep the committed value neutral so source checkouts do not
|
|
accidentally report a stale release tag.
|
|
"""
|
|
|
|
STUDIO_RELEASE_VERSION = None
|