Skip to content

Commit f8005bf

Browse files
Merge pull request #130 from cbc-univie/update_versioneer
Avoid using python=3.12 for the moment
2 parents ed859eb + fe52a3a commit f8005bf

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/CI.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# miniforge-variant: Mambaforge-pypy3
4848

4949
steps:
50-
- uses: actions/[email protected].1
50+
- uses: actions/[email protected].6
5151

5252
- name: Additional info about the build
5353
shell: bash
@@ -61,7 +61,7 @@ jobs:
6161

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

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

7979

8080
# More info on options: https://github.com/conda-incubator/setup-miniconda
81-
- uses: conda-incubator/[email protected].1
81+
- uses: conda-incubator/[email protected].4
8282
with:
8383
python-version: ${{ matrix.python-version }}
8484
condarc-file: ${{ matrix.condarc-file }}
@@ -122,7 +122,7 @@ jobs:
122122
pytest -v --cov=transformato --cov-report=xml --color=yes transformato/tests/
123123
124124
- name: CodeCov
125-
uses: codecov/codecov-action@v3.1.4
125+
uses: codecov/codecov-action@v4.4.1
126126
with:
127127
file: ./coverage.xml
128128
flags: unittests

devtools/conda-envs/fep_env.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ channels:
55
dependencies:
66
# Base depends
77
- openmm
8+
- python<3.12
89
- openmmtools
910
- numpy
1011
- ipython

0 commit comments

Comments
 (0)