fix(bart26g): correct spotoptim path dependency so Dependabot can resolve it#101
Merged
Merged
Conversation
…to .. The path `../../spotoptim` pointed outside the repository, causing Dependabot to fail with `path_dependencies_not_reachable`. The correct relative path from bart26g/ to the repo root (where spotoptim lives) is `..`. Also regenerates uv.lock to reflect the current spotoptim version (1.0.1) and remove now-unused transitive packages.
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job Dependabot
fix(bart26g): correct spotoptim path dependency so Dependabot can resolve it
Jun 13, 2026
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.
Dependabot was failing with
path_dependencies_not_reachableonspotoptiminbart26g/pyproject.tomlbecause the declared path../../spotoptimresolves outside the cloned repository.Changes
bart26g/pyproject.toml: Fix path source forspotoptim—../../spotoptim→..(repo root)The
uv.lockhad already been generated witheditable = "../", confirming thepyproject.tomlheld a stale/wrong value.bart26g/uv.lock: Regenerated to sync with the corrected path — bumpsspotoptim0.12.4→1.0.1and drops now-unreferenced transitive packages (torch,tensorboard,statsmodels, and others).