Set the version on main to 0.4.0 - #460
Merged
Merged
Conversation
alejoe91
reviewed
Jul 29, 2026
| [project] | ||
| name = "probeinterface" | ||
| version = "0.3.2" | ||
| version = "0.3.3" |
Collaborator
Author
There was a problem hiding this comment.
Yes, I did not push the last commit when I push this up. Check the latest commit.
alejoe91
approved these changes
Jul 30, 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.
Main declares
version = "0.3.2", the same as the published release, sopip install git+https://github.com/SpikeInterface/probeinterface@mainis a silent no-op for anyonewho already has 0.3.2 and exits 0 without installing anything. This broke neuroconv's daily
development job, which failed with
AttributeErroronhas_spikegadgets_neuropixels_probeswhileits own
pip listprintedprobeinterface 0.3.2, so it was testing the release and reporting anupstream API mismatch that does not exist (see catalystneuro/neuroconv#1828 "Fix the daily dev
workflows", which works around this with
--force-reinstall --no-deps).This is the "after release" bump that normally follows a
tag and was missed after 0.3.2. I used 0.4.0 because PR #454 "Prepare release 0.4.0" already carries
that number and makes the identical edit, so the two do not conflict.