66 linting :
77 runs-on : ubuntu-latest
88 steps :
9- - uses : actions/checkout@v4
9+ - uses : actions/checkout@v6
1010 - name : Set Python environment
11- uses : actions/setup-python@v5
11+ uses : actions/setup-python@v6
1212 with :
13- python-version : 3.12
13+ python-version : 3.14
1414 architecture : x64
1515
1616 - name : Install dependencies
@@ -28,13 +28,13 @@ jobs:
2828 needs : linting
2929 runs-on : ubuntu-latest
3030 strategy :
31- max-parallel : 6
31+ max-parallel : 7
3232 matrix :
33- python-version : ['3.8', '3.9', '3.10', '3.11', '3.12']
33+ python-version : ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]
3434 steps :
35- - uses : actions/checkout@v4
35+ - uses : actions/checkout@v6
3636 - name : Set up Python ${{ matrix.python-version }}
37- uses : actions/setup-python@v5
37+ uses : actions/setup-python@v6
3838 with :
3939 python-version : ${{ matrix.python-version }}
4040 - name : Install dependencies
@@ -48,11 +48,11 @@ jobs:
4848 needs : linting
4949 runs-on : ubuntu-latest
5050 steps :
51- - uses : actions/checkout@v4
51+ - uses : actions/checkout@v6
5252 - name : Set Python environment
53- uses : actions/setup-python@v5
53+ uses : actions/setup-python@v6
5454 with :
55- python-version : 3.12
55+ python-version : 3.14
5656 architecture : x64
5757
5858 - name : Install dependencies
6363 run : |
6464 python -m build . -w -n
6565
66- - uses : actions/upload-artifact@v4
66+ - uses : actions/upload-artifact@v7
6767 with :
6868 name : wheels
6969 path : ./dist/*.whl
0 commit comments