-
Notifications
You must be signed in to change notification settings - Fork 8
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
Make test env use latest release of openfe and gufe instead of main
#203
Conversation
Now that `openfe` and `gufe` are operating at regular release cadences, I think it makes sense for us to perform testing against the latest releases of these on `conda-forge` instead of testing against the `main` branches of them. In particular, this saves us the need of having to manually track their dependencies, such as the recently added `kartograf` dependency in `openfe`. I think this is generally a safe move, since we only ever deploy production envs with releases of these packages too (pinned to specific releases). The CI/test env still operates as a canary of upstream changes, but on a delay dependent on upstream releases compared to current state.
@mikemhenry thoughts on this? Any reasons why we might not want to go this route? |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #203 +/- ##
==========================================
- Coverage 82.85% 82.26% -0.59%
==========================================
Files 22 22
Lines 2735 2735
==========================================
- Hits 2266 2250 -16
- Misses 469 485 +16 ☔ View full report in Codecov by Sentry. |
devtools/conda-envs/test.yml
Outdated
- gufe | ||
- openfe |
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.
not blocking but doing >=
for min versions we support would save us from pulling in something old by mistake
…ng to old versions
LGTM, only other thing would be remove the stuff commented out since it looks like it works without it |
Co-authored-by: Mike Henry <[email protected]>
Awesome, thanks @mikemhenry! Merging! |
Now that
openfe
andgufe
are operating at regular release cadences, I think it makes sense for us to perform testing against the latest releases of these onconda-forge
instead of testing against themain
branches of them. In particular, this saves us the need of having to manually track their dependencies, such as the recently addedkartograf
dependency inopenfe
.I think this is generally a safe move, since we only ever deploy production envs with releases of these packages too (pinned to specific releases). The CI/test env still operates as a canary of upstream changes, but on a delay dependent on upstream releases compared to current state.