Relicense to Apache-2.0 - #12
Merged
Merged
Conversation
The LICENSE file was already switched to Apache-2.0 (a1af65b); align the package metadata so it matches. This also makes the wrapper's license consistent with the bundled gomc-rest server (Apache-2.0 since v1.5.0), so redistributing that binary inside the wheels no longer mixes licenses. Verified: built wheel METADATA now reports 'License: Apache-2.0' and bundles the LICENSE under .dist-info/licenses/. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01SQbVkPEprK2ebcjck5ouUy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The
LICENSEfile is already Apache-2.0 (a1af65b), butpyproject.tomlstill declaredMIT— this fixes that inconsistency so the package metadata matches.pyproject.toml:license = { text = "MIT" }→{ text = "Apache-2.0" }Why
Aligns the wrapper's license with the bundled
gomc-restserver, which is Apache-2.0 as of v1.5.0. Since the wheels redistribute that binary, matching licenses removes the MIT-wrapper / Apache-payload mismatch.Verified
Built the wheel locally and inspected
METADATA:The Apache LICENSE text is bundled under
.dist-info/licenses/LICENSE.import gomc_reststill works.🤖 Generated with Claude Code
Generated by Claude Code