@@ -24,17 +24,17 @@ jobs:
2424 strategy :
2525 fail-fast : false
2626 matrix :
27- os : [macOS-latest, ubuntu-latest, windows-latest]
28- python-version : ["3.10 ", "3.11 ", "3.12 "]
27+ os : [macOS-latest, ubuntu-latest] # ignore windows-latest for now
28+ python-version : ["3.11 ", "3.12 ", "3.13", "3.14 "]
2929 mdanalysis-version : ["latest", "develop"]
3030 # Manually exclude any combinations of the test matrix that can't be run
31- exclude :
31+ # exclude:
3232 # The latest release of MDAnalysis only supports up to Python 3.11
3333 # so we exclude 3.12 from the test matrix (issue #69)
34- - python-version : " 3.12"
35- mdanalysis-version : " latest"
34+ # - python-version: "3.12"
35+ # mdanalysis-version: "latest"
3636 steps :
37- - uses : actions/checkout@v4
37+ - uses : actions/checkout@v7
3838 with :
3939 fetch-depth : 0
4040
4545 ulimit -a
4646
4747 - name : Install conda dependencies
48- uses : conda-incubator/setup-miniconda@v3
48+ uses : conda-incubator/setup-miniconda@v4
4949 with :
5050 python-version : ${{ matrix.python-version }}
5151 environment-file : devtools/environment.yml
@@ -93,10 +93,10 @@ jobs:
9393 - name : codecov
9494 if : ${{ github.repository == 'Becksteinlab/propkatraj'
9595 && github.event_name != 'schedule' }}
96- uses : codecov/codecov-action@v4
96+ uses : codecov/codecov-action@v7
9797 with :
9898 token : ${{ secrets.CODECOV_TOKEN }}
99- file : coverage.xml
99+ files : coverage.xml
100100 fail_ci_if_error : True
101101 verbose : True
102102
@@ -105,10 +105,10 @@ jobs:
105105 runs-on : ubuntu-latest
106106
107107 steps :
108- - uses : actions/checkout@v4
108+ - uses : actions/checkout@v7
109109
110110 - name : Set up Python
111- uses : actions/setup-python@v5
111+ uses : actions/setup-python@v6
112112 with :
113113 python-version : " 3.11"
114114
@@ -128,10 +128,10 @@ jobs:
128128 runs-on : ubuntu-latest
129129
130130 steps :
131- - uses : actions/checkout@v4
131+ - uses : actions/checkout@v7
132132
133133 - name : Set up Python
134- uses : actions/setup-python@v5
134+ uses : actions/setup-python@v6
135135 with :
136136 python-version : " 3.11"
137137
0 commit comments