Skip to content

Commit

Permalink
Merge pull request #130 from cbc-univie/update_versioneer
Browse files Browse the repository at this point in the history
Avoid using python=3.12 for the moment
  • Loading branch information
JohannesKarwou authored Jun 5, 2024
2 parents ed859eb + fe52a3a commit f8005bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
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

0 comments on commit f8005bf

Please sign in to comment.