-
Notifications
You must be signed in to change notification settings - Fork 223
Fix Sid dependencies and autopkgtest #2033
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
peternewman
merged 2 commits into
OpenLightingProject:0.10
from
peternewman:0.10-fix-sid
Mar 30, 2026
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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.
Does this need to be
python3-allor can it be a smaller subset?I'm wondering if this is really required since the sid build has been failing due to other factors. Where did this pop up?
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.
I just copied what the ola-python test has been doing for 3+ years, but @yoe would definitely be the expert:
https://github.com/peternewman/ola/blob/15948e72bc3eda5ba156bffb4a1f1da11e02d344/debian/tests/control#L10-L11
I think the idea is python3-all pulls in all the versions of python on that OS ( https://packages.debian.org/sid/python3-all ) and the you can use py3versions to confirm they're all compatible, which they should be currently...
Yeah I finally had a look, and it was just due to the missing equivs package (I assume some code was split out).
All the sid build and test worked after this (on 0.10 branch):
https://github.com/OpenLightingProject/ola/actions/runs/22869778604/job/66347046491#step:8:725
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.
Wellll, calling me the expert might be pushing it a bit, in this case.
I just took the shortcut of "this will work and I don't have time to do dig into too many details here do shut up and get python3-all kthxbye".
It's very much possible that this will work with a smaller subset too, but I wouldn't know what exactly is required...
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.
Hah OK makes sense. Let's keep the
python3-allfor now.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.
I don't have a strong opinion, but I suspect depending on
python3instead ofpython3-allmight be more appropriate; we just need one version of python here don't we?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.
Sorry -- Never mind, I indeed see
py3versionsis used to iterate over the versions, so then it might be useful to install just all versions available.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.
Yes exactly, we want to test widely and see what breaks at this stage!
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.
Well it would, but presumably if those versions are all available on sid, we should ideally confirm OLA works with all those versions of Python on sid?