@@ -36,37 +36,37 @@ jobs:
3636 matrix :
3737 os : [ubuntu, ] # macos, windows] # Only Linux currently.
3838 case :
39- - python-version : " 3.10 "
39+ - python-version : " 3.11 "
4040 name : minimal
4141 os : ubuntu
4242 conda : " numba 'scipy=1.10' scooby libdlf"
4343 test : " "
44- - python-version : " 3.11 "
44+ - python-version : " 3.12 "
4545 name : plain
4646 os : ubuntu
4747 conda : " numba 'scipy>=1.10' scooby libdlf"
4848 test : " "
49- - python-version : " 3.11 "
49+ - python-version : " 3.12 "
5050 name : full
5151 os : ubuntu
5252 conda : " numba 'scipy>=1.10' scooby libdlf matplotlib pytest-mpl"
5353 test : " --mpl"
54- - python-version : " 3.12 "
54+ - python-version : " 3.13 "
5555 name : plain
5656 os : ubuntu
5757 conda : " numba 'scipy>=1.10' scooby libdlf"
5858 test : " "
59- - python-version : " 3.12 "
59+ - python-version : " 3.13 "
6060 name : full
6161 os : ubuntu
6262 conda : " numba 'scipy>=1.10' scooby libdlf matplotlib pytest-mpl"
6363 test : " --mpl"
64- - python-version : " 3.13 "
64+ - python-version : " 3.14 "
6565 name : plain
6666 os : ubuntu
6767 conda : " numba 'scipy>=1.10' scooby libdlf"
6868 test : " "
69- - python-version : " 3.13 "
69+ - python-version : " 3.14 "
7070 name : full
7171 os : ubuntu
7272 conda : " numba 'scipy>=1.10' scooby libdlf matplotlib pytest-mpl"
8181
8282 # Checks-out your repository under $GITHUB_WORKSPACE
8383 - name : Checkout
84- uses : actions/checkout@v4
84+ uses : actions/checkout@v6.0.1
8585 with :
8686 # Need to fetch more than the last commit so that setuptools-scm can
8787 # create the correct version string. If the number of commits since
9797 run : git fetch origin 'refs/tags/*:refs/tags/*'
9898
9999 - name : Setup miniconda
100- uses : conda-incubator/setup-miniconda@v3
100+ uses : conda-incubator/setup-miniconda@v3.2.0
101101 with :
102102 auto-update-conda : true
103103 python-version : ${{ matrix.case.python-version }}
@@ -129,7 +129,7 @@ jobs:
129129 pytest --cov=empymod ${{ matrix.case.test }}
130130
131131 - name : Coveralls
132- # [pin @develop@20230609 ]
132+ # [pin @develop@20240509 ]
133133 uses : AndreMiras/coveralls-python-action@65c1672f0b8a201702d86c81b79187df74072505
134134 with :
135135 parallel : true
@@ -141,7 +141,7 @@ jobs:
141141 runs-on : ubuntu-latest
142142 steps :
143143 - name : Coveralls Finished
144- # [pin @develop@20230609 ]
144+ # [pin @develop@20240509 ]
145145 uses : AndreMiras/coveralls-python-action@65c1672f0b8a201702d86c81b79187df74072505
146146 with :
147147 parallel-finished : true
@@ -156,7 +156,7 @@ jobs:
156156 steps :
157157 # Checks-out your repository under $GITHUB_WORKSPACE
158158 - name : Checkout
159- uses : actions/checkout@v4
159+ uses : actions/checkout@v6.0.1
160160 with :
161161 # Need to fetch more than the last commit so that setuptools-scm can
162162 # create the correct version string. If the number of commits since
@@ -172,7 +172,7 @@ jobs:
172172 run : git fetch origin 'refs/tags/*:refs/tags/*'
173173
174174 - name : Setup Python
175- uses : actions/setup-python@v5
175+ uses : actions/setup-python@v6.1.0
176176 with :
177177 python-version : " 3.11"
178178
@@ -199,7 +199,7 @@ jobs:
199199
200200 - name : Publish to Test PyPI
201201 if : success()
202- uses : pypa/gh-action-pypi-publish@release/v1
202+ uses : pypa/gh-action-pypi-publish@v1.13.0
203203 with :
204204 user : __token__
205205 password : ${{ secrets.TEST_PYPI_PASSWORD }}
@@ -211,7 +211,7 @@ jobs:
211211 - name : Publish to PyPI
212212 # Only for releases
213213 if : success() && github.event_name == 'release'
214- uses : pypa/gh-action-pypi-publish@release/v1
214+ uses : pypa/gh-action-pypi-publish@v1.13.0
215215 with :
216216 user : __token__
217217 password : ${{ secrets.PYPI_PASSWORD }}
0 commit comments