-
Notifications
You must be signed in to change notification settings - Fork 0
Re-release both adapters at 1.1.0, and record what is actually on PyPI #192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # SPDX-FileCopyrightText: 2026 The CTRLRun contributors | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # What is actually on PyPI, and the kernel range that distribution declares. | ||
| # | ||
| # `test_each_adapter_declares_a_kernel_range_that_contains_this_kernel` checks the range in | ||
| # `adapters/<x>/pyproject.toml` against the kernel in this repository. That is a fact about the | ||
| # tree. It is not a fact about what a user gets from `pip install`, and the two came apart: | ||
| # the range was widened at 0.7, 0.8, 0.9 and 0.10 and the adapter was **never re-published**, so | ||
| # `ctrlrun-openai-agents` 1.0.0 went on declaring `ctrlrun<0.6` while the kernel reached 0.10.0. | ||
| # `pip install ctrlrun-openai-agents` beside a current kernel then either refuses to resolve or | ||
| # silently downgrades ctrlrun to 0.5.x. | ||
| # | ||
| # This file is the record of the published side, updated by hand **in the same commit that tags | ||
| # a release**. `test_a_widened_kernel_range_is_not_shipped_without_a_new_version` compares it to | ||
| # the tree: if an adapter's range has moved away from what was published, its version must have | ||
| # moved too, or the release is one nobody can install. | ||
| # | ||
| # It is deliberately hand-written rather than fetched. A test that asked PyPI would need the | ||
| # network, and `SPEC-v0.4 §3.9`'s discipline applies: a check that cannot run offline is a check | ||
| # that gets skipped in the run that mattered. | ||
|
|
||
| [langgraph] | ||
| version = "1.0.0" | ||
| kernel = ">=0.5,<0.6" | ||
|
|
||
| [openai-agents] | ||
| version = "1.0.0" | ||
| kernel = ">=0.5,<0.6" |
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Require a newer version, not only a different version.
This assertion accepts a lower version. For example,
0.9.0passes against published1.0.0after a range change. Normal installs still select1.0.0, so users do not receive the compatible range. Compare parsed versions with>.Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents