Update flux-core version to 0.87.0 and flux-pmix version to 0.7.1 - #1042
Conversation
📝 WalkthroughWalkthroughThe pull request updates ChangesFlux dependency updates
Estimated code review effort: 1 (Trivial) | ~5 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/pipeline.yml:
- Line 248: Update the flux-pmix dependency in
.github/workflows/pipeline.yml:248-248,
.ci_support/environment-integration.yml:13-13, and binder/environment.yml:9-9 to
use the same verified conda-forge package version that is available before
merging; replace the unavailable 0.7.1 pin consistently at all three sites.
🪄 Autofix
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro Plus
Run ID: 421d7e4a-ad65-488d-8f08-c61e56afe550
📒 Files selected for processing (3)
.ci_support/environment-integration.yml.github/workflows/pipeline.ymlbinder/environment.yml
| timeout-minutes: 5 | ||
| run: | | ||
| echo -e '- coverage\n- flux-core =0.81.0\n- flux-pmix=0.6.0' >> .ci_support/environment-openmpi.yml | ||
| echo -e '- coverage\n- flux-core =0.87.0\n- flux-pmix=0.7.1' >> .ci_support/environment-openmpi.yml |
There was a problem hiding this comment.
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
for spec in "flux-core 0.87.0" "flux-pmix 0.7.1"; do
read -r package version <<< "$spec"
curl -fsSL "https://api.anaconda.org/package/conda-forge/${package}" |
jq -e --arg version "$version" '
[.files[]?
| select(
.version == $version
and .platform == "linux-64"
and (((.labels // []) | index("main")) != null)
)]
| length > 0
' >/dev/null
done
rg -n 'flux-(core|pmix)[ =]+0\.(87\.0|7\.1)' \
.ci_support/environment-integration.yml \
binder/environment.yml \
.github/workflows/pipeline.ymlRepository: pyiron/executorlib
Length of output: 156
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
printf '%s\n' '--- flux-core package info ---'
curl -fsSL "https://api.anaconda.org/package/conda-forge/flux-core" | jq '{name, latest_version, files_count, main_files: [.files[]? | select(.version == "0.87.0" and .platform == "linux-64" and (((.labels // []) | index("main")) != null))]}'
printf '%s\n' '--- flux-pmix package info ---'
curl -fsSL "https://api.anaconda.org/package/conda-forge/flux-pmix" | jq '{name, latest_version, files_count, main_files: [.files[]? | select(.version == "0.7.1" and .platform == "linux-64" and (((.labels // []) | index("main")) != null))]}'
printf '%s\n' '--- exact version matches for flux-core 0.87.0 on linux-64 with main label ---'
curl -fsSL "https://api.anaconda.org/package/conda-forge/flux-core" | jq '[.files[]? | select(.version == "0.87.0" and .platform == "linux-64" and (((.labels // []) | index("main")) != null)) | {version, platform, labels, package_filename}] | length'
printf '%s\n' '--- exact version matches for flux-pmix 0.7.1 on linux-64 with main label ---'
curl -fsSL "https://api.anaconda.org/package/conda-forge/flux-pmix" | jq '[.files[]? | select(.version == "0.7.1" and .platform == "linux-64" and (((.labels // []) | index("main")) != null)) | {version, platform, labels, package_filename}] | length'
printf '%s\n' '--- repository occurrences ---'
rg -n 'flux-(core|pmix)[ =]+"?0\.(87\.0|7\.1)"?' \
.ci_support/environment-integration.yml \
binder/environment.yml \
.github/workflows/pipeline.yml || trueRepository: pyiron/executorlib
Length of output: 1085
Wait for the flux-pmix=0.7.1 conda-forge package before merging.
The pinned version is not available on the default conda-forge channel, so CI and Binder environment creation can fail. Use the same verified package availability for .github/workflows/pipeline.yml, .ci_support/environment-integration.yml, and binder/environment.yml.
📍 Affects 3 files
.github/workflows/pipeline.yml#L248-L248(this comment).ci_support/environment-integration.yml#L13-L13binder/environment.yml#L9-L9
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.github/workflows/pipeline.yml at line 248, Update the flux-pmix dependency
in .github/workflows/pipeline.yml:248-248,
.ci_support/environment-integration.yml:13-13, and binder/environment.yml:9-9 to
use the same verified conda-forge package version that is available before
merging; replace the unavailable 0.7.1 pin consistently at all three sites.
Source: MCP tools
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1042 +/- ##
=======================================
Coverage 94.22% 94.22%
=======================================
Files 39 39
Lines 2113 2113
=======================================
Hits 1991 1991
Misses 122 122 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Summary by CodeRabbit
Chores
Bug Fixes