-
Notifications
You must be signed in to change notification settings - Fork 20
feat(someip): support static remote endpoint (no Service Discovery) #621
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,8 @@ authors = [ | |
| requires-python = ">=3.11" | ||
| dependencies = [ | ||
| "jumpstarter", | ||
| "opensomeip>=0.1.2,<0.2.0", | ||
| # TODO: replace with "opensomeip>=0.1.4,<0.2.0" once v0.1.4 is published on PyPI | ||
| "opensomeip @ git+https://github.com/vtz/opensomeip-python.git@ac1afdeb1ffa002ce3af4e5a3ca2c6fc9a690346", | ||
|
Comment on lines
+13
to
+14
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check whether opensomeip 0.1.4 is yet available on PyPI
curl -s https://pypi.org/pypi/opensomeip/json | jq '.releases | keys'Repository: jumpstarter-dev/jumpstarter Length of output: 95 🏁 Script executed: cat -n python/packages/jumpstarter-driver-someip/pyproject.tomlRepository: jumpstarter-dev/jumpstarter Length of output: 1757 🏁 Script executed: # Check if there are any issues/discussions about opensomeip 0.1.4 release
rg -i "opensomeip.*0\.1\.4|0\.1\.4.*opensomeip" --type py --type toml --type mdRepository: jumpstarter-dev/jumpstarter Length of output: 212 🏁 Script executed: # Check the specific commit referenced to understand why it's pinned
git log --oneline vtz/opensomeip-python 2>/dev/null | head -5 || echo "Commit info not directly accessible"
# Check if the driver package is in workspace members (indicating publication intent)
fd pyproject.toml -x grep -l "jumpstarter-driver-someip" {} \; 2>/dev/null | head -5Repository: jumpstarter-dev/jumpstarter Length of output: 202 🏁 Script executed: # Search for mentions of 0.1.4 release in issues, discussions, or PR context
rg -i "0\.1\.4|opensomeip.*release" --type md --type py -B 2 -A 2Repository: jumpstarter-dev/jumpstarter Length of output: 53 🏁 Script executed: # Check git log for context about why this specific commit was pinned
git log --all --oneline --grep="opensomeip\|someip" 2>/dev/null | head -20Repository: jumpstarter-dev/jumpstarter Length of output: 296 🏁 Script executed: # Look for any build/CI configuration that might block publishing with direct references
find . -name "*.yml" -o -name "*.yaml" | xargs grep -l "publish\|pypi\|direct.*reference" 2>/dev/null | head -5Repository: jumpstarter-dev/jumpstarter Length of output: 288 Direct Git reference blocks PyPI publication and should be release-gated. This dependency creates a known publication blocker:
Ensure this is treated as a release-blocker: the package should not be published to PyPI while this Git reference is active, and the v0.1.4 PyPI release should be tracked as a prerequisite for publishing this driver. 🤖 Prompt for AI Agents
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @vtz can you release 0.1.4 for opensomeip and update this afterwards please?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| ] | ||
|
|
||
| [project.entry-points."jumpstarter.drivers"] | ||
|
|
@@ -22,6 +23,9 @@ dev = [ | |
| "pytest>=8.3.3", | ||
| ] | ||
|
|
||
| [tool.hatch.metadata] | ||
| allow-direct-references = true | ||
|
|
||
| [tool.hatch.metadata.hooks.vcs.urls] | ||
| Homepage = "https://jumpstarter.dev" | ||
| source_archive = "https://github.com/jumpstarter-dev/repo/archive/{commit_hash}.zip" | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.