Skip to content
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

install latest openfe and gufe as a canary to catch upstream changes #204

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
python-version:
- "3.9"
- "3.10"
deps-versions: ['openfe-release']
include:
- os: 'ubuntu'
python-version: "3.10"
deps-versions: 'openfe-latest'

steps:
- uses: actions/checkout@v2
Expand All @@ -42,6 +47,9 @@ jobs:
environment-file: devtools/conda-envs/test.yml
activate-environment: alchemiscale-test

- name: "Install openfe & gufe from latest source"
if: ${{ matrix.deps-versions == 'openfe-latest' }}
run: pip install --no-deps git+https://github.com/OpenFreeEnergy/gufe git+https://github.com/OpenFreeEnergy/openfe
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
run: pip install --no-deps git+https://github.com/OpenFreeEnergy/gufe git+https://github.com/OpenFreeEnergy/openfe
run: |
pip install --no-deps git+https://github.com/OpenFreeEnergy/gufe git+https://github.com/OpenFreeEnergy/openfe
mamba install kartograff

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should fix the issue highlighted here #204 (comment)
We have to manually install packages to make the canary pass, that way we can "catch" the upstream change. We can also not do that and just have the CI fail until a new openfe releases comes out and fixes the dependency issue


- name: "Install"
run: python -m pip install --no-deps -e .
Expand Down
Loading