unity-devkit 0.1.0__tar.gz → 0.1.1__tar.gz
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.
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/.github/workflows/release.yml +1 -1
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/AGENTS.md +1 -1
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/PKG-INFO +1 -1
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/pyproject.toml +1 -1
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/.github/workflows/ci.yml +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/.gitignore +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/CLAUDE.md +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/LICENSE +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/NOTICE +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/README.md +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/publish-config.json +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/ruff.toml +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/__init__.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/build_unity.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/cache.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/ci_step.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/compile_unity.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/git_tags.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/install.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/license.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/license_restore.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/lock_unity.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/matrix.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/projects.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/py.typed +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/setup.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/setup_oras.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/test_unity.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/third-party/README.md +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/third-party/dotnet-install.sh +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/src/unity_devkit/unity.py +0 -0
- {unity_devkit-0.1.0 → unity_devkit-0.1.1}/uv.lock +0 -0
|
@@ -39,7 +39,7 @@ Supporting modules: `projects.py` (manifest schema + discovery), `unity.py` (edi
|
|
|
39
39
|
|
|
40
40
|
**Entry-point names are the workflow contract.** Consumer `unity-build.yml` workflows invoke `unity-matrix`, `unity-license-tag`, `activate-unity-license`, and `build-unity` by name via `uv run`. Consumers pin the workflow by ref and this package by git revision independently; the two pins stay compatible as long as the entry-point names and flags hold, so treat those as a public API.
|
|
41
41
|
|
|
42
|
-
**The environment-lookup helpers are cross-repo Python API.** `unity.find_editor_for_version` (editor ladder: `unity-editor` on PATH → `/opt/unity/<version>` → `~/Unity/Hub/Editor/<version>`; raises `ValueError` listing every searched path on a miss), `unity.editor_version` (`ProjectVersion.txt` parse; `None` for a missing file or unparseable content), and `projects.directories_containing` (+ `PRUNE_DIRECTORIES`) are imported by git-referencing consumers — prepo's `sync` verb — the same way
|
|
42
|
+
**The environment-lookup helpers are cross-repo Python API.** `unity.find_editor_for_version` (editor ladder: `unity-editor` on PATH → `/opt/unity/<version>` → `~/Unity/Hub/Editor/<version>`; raises `ValueError` listing every searched path on a miss), `unity.editor_version` (`ProjectVersion.txt` parse; `None` for a missing file or unparseable content), and `projects.directories_containing` (+ `PRUNE_DIRECTORIES`) are imported by git-referencing consumers — prepo's `sync` verb — the same way release-devkit imports `ci_step`/`setup`. Their signatures and miss behavior are contract, not internals. The `SystemExit`-raising wrappers (`find_unity_editor`, `read_editor_version`) exist for unity-devkit's own CLI paths and delegate to the core helpers.
|
|
43
43
|
|
|
44
44
|
**Version stamping is opt-in via `tag_prefix`.** `build-unity` writes `.build-version.json` (consumed by the project's build `executeMethod`) only when the project's manifest declares `tag_prefix`; the version is the latest `<tag_prefix>-v*` git tag plus a run-number suffix. Projects without the field build unversioned. Consumer repos that release keep their own name→prefix map on their side — the two must agree for projects that release.
|
|
45
45
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|