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.
Prior to this commit, the FuseSoC version downloaded when running
would identify itself as version
0.4.dev0
to Pip as well as infusesoc --version
. This is problematic in at least two ways:Because Pip gets told that it downloaded version 0.4, it can prefer to use a locally cached archive (and I've seen it doing that!) that is really version 0.4, causing the update to become a NOP even though the user thinks they just updated FuseSoC.
Users have no way of distinguishing between versions 0.4 and 0.5 from the command line, which makes debugging issues that got fixed in version 0.5 difficult.
To work around this problem, the PR lowRISC/fusesoc#6 changed
fallback_version
, from which our FuseSoC gets its version, to0.5.dev0
, and this version was subsequently tagged as such. This commit now updates our Python requirements to load the fixed version.Run
pip install -r python-requirements.txt
after this commit has landed to update FuseSoC to version0.5.dev0
for good.