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

Avoid using python=3.12 for the moment #130

Merged
merged 5 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# miniforge-variant: Mambaforge-pypy3

steps:
- uses: actions/[email protected].1
- uses: actions/[email protected].6

- name: Additional info about the build
shell: bash
Expand All @@ -61,7 +61,7 @@ jobs:

- name: Make Cache (no worflow_dispatch)
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/conda_pkgs_dir # ${{ matrix.prefix }}
# Increase the last number (0) to reset cache manually
Expand All @@ -70,15 +70,15 @@ jobs:

- name: Make Cache (worflow_dispatch)
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/conda_pkgs_dir # ${{ matrix.prefix }}
key: ${{ matrix.label }}-conda-${{ hashFiles('devtools/conda-envs/fep_env.yaml') }}-${{ env.DATE }}-${{ inputs.CACHE_NUMBER }}
id: cache2


# More info on options: https://github.com/conda-incubator/setup-miniconda
- uses: conda-incubator/[email protected].1
- uses: conda-incubator/[email protected].4
with:
python-version: ${{ matrix.python-version }}
condarc-file: ${{ matrix.condarc-file }}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
pytest -v --cov=transformato --cov-report=xml --color=yes transformato/tests/

- name: CodeCov
uses: codecov/codecov-action@v3.1.4
uses: codecov/codecov-action@v4.4.1
with:
file: ./coverage.xml
flags: unittests
Expand Down
1 change: 1 addition & 0 deletions devtools/conda-envs/fep_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ channels:
dependencies:
# Base depends
- openmm
- python<3.12
- openmmtools
- numpy
- ipython
Expand Down
Loading