-
Notifications
You must be signed in to change notification settings - Fork 65
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
Fix package versioning #616
Fix package versioning #616
Conversation
Thanks Vyas! 🙏 Does this affect released versions as well? IOW is there value in having this for 25.02? Or not really |
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.
Looks good, thanks @vyasr
rapids-logger "Begin py build" | ||
|
||
CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) | ||
conda config --set path_conflict prevent | ||
|
||
sccache --zero-stats | ||
|
||
rapids-conda-retry mambabuild \ | ||
RAPIDS_PACKAGE_VERSION=$(head -1 ./VERSION) rapids-conda-retry mambabuild \ |
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.
Why not just:
RAPIDS_PACKAGE_VERSION=$(head -1 ./VERSION) rapids-conda-retry mambabuild \ | |
RAPIDS_PACKAGE_VERSION=$(rapids-generate-version) rapids-conda-retry mambabuild \ |
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.
Sure we could do that if you prefer, I just used this approach since we're already calling that function above to overwrite the VERSION file. If you want to change it feel free to apply this suggestion, I'll leave it up to you.
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.
@madsbk once you resolve this thread either way feel free to merge.
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.
Missed this thread was blocking. Looks like Vyas and I posted at the same time in fact
Have added this change in a new PR: #622
We can decide whether or not to include that
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.
All good.
No, this only affects nightlies which is why I targeted 25.04. |
/merge |
Thanks everyone! 🙏 |
I had intended to let @madsbk decide what he wanted to do with #616 (comment) before merging, but it's a minor point. We can always make a follow-up PR if needed. |
Oops sorry. Saw his approval. So assumed this was ready to go Yep we can always follow up |
No worries |
This uses the `RAPIDS_PACKAGE_VERSION` values set in #616. This ensures we have consistent nightly versions. This PR is independent of #622 (it is needed regardless of whether that PR is closed or merged). Authors: - Bradley Dice (https://github.com/bdice) Approvers: - James Lamb (https://github.com/jameslamb) URL: #628
The nightly package versions are currently not being correctly assigned.