Skip to content

Commit 11073fb

Browse files
author
Jawad Chowdhury
committed
1- dropped python 3.9 (EOL Oct 2025), added 3.12/3.13 to CI, 2- updated dask-ml >=2025.1.0 to fix sklearn 1.6+ , 3- updated scikit-learn >=1.6.1 (required by new dask-ml) , 4- updated gitHub actions to latest versions to avoid nodejs deprecation
1 parent 362ba15 commit 11073fb

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/actions.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: build
22

33
env:
4-
PYTHON_MAIN_VERSION: 3.9
4+
PYTHON_MAIN_VERSION: "3.10"
55

66
on:
77
pull_request:
@@ -19,14 +19,14 @@ jobs:
1919
strategy:
2020
max-parallel: 5
2121
matrix:
22-
python-version: [3.9, "3.10", "3.11"]
22+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626

2727
- name: Set up Python ${{ matrix.python-version }}
2828

29-
uses: actions/setup-python@v3
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232
- name: Install dependencies
@@ -59,7 +59,7 @@ jobs:
5959
- name: Upload coverage to Codecov
6060
# if: ${{ matrix.python-version == env.PYTHON_MAIN_VERSION }}
6161
if: ${{ github.repository == 'pycroscopy/sidpy' && matrix.python-version == env.PYTHON_MAIN_VERSION }}
62-
uses: codecov/codecov-action@v3
62+
uses: codecov/codecov-action@v4
6363
with:
6464
token: ${{ secrets.CODECOV_TOKEN }}
6565
files: ./coverage.xml

0 commit comments

Comments
 (0)