Skip to content

Commit b6ae968

Browse files
committed
CI: update CI with python 3.12, actions version, and not failing fast
1 parent 72510b4 commit b6ae968

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci_crontests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Checkout code
53-
uses: actions/checkout@v3
53+
uses: actions/checkout@v4
5454
with:
5555
fetch-depth: 0
5656
- name: Set up Python

.github/workflows/ci_devtests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
include:
3333
- name: dev dependencies with all dependencies with coverage
3434
os: ubuntu-latest
35-
python: '3.11'
36-
toxenv: py311-test-alldeps-devdeps-cov
35+
python: '3.12-dev'
36+
toxenv: py312-test-alldeps-devdeps-cov
3737
toxargs: -v
3838

3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242
with:
4343
fetch-depth: 0
4444
- name: Set up Python

.github/workflows/ci_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
name: ${{ matrix.name }}
2828
runs-on: ${{ matrix.os }}
2929
strategy:
30-
fail-fast: true
30+
fail-fast: false
3131
matrix:
3232
include:
3333

@@ -56,7 +56,7 @@ jobs:
5656

5757
steps:
5858
- name: Checkout code
59-
uses: actions/checkout@v3
59+
uses: actions/checkout@v4
6060
with:
6161
fetch-depth: 0
6262
- name: Set up Python
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-latest
7979
steps:
8080
- name: Checkout code
81-
uses: actions/checkout@v3
81+
uses: actions/checkout@v4
8282
with:
8383
fetch-depth: 0
8484
- name: Set up Python

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{37,38,39,310,311}-test{,-alldeps,-oldestdeps,-devdeps,-predeps}{,-online}{,-cov}
3+
py{37,38,39,310,311,312}-test{,-alldeps,-oldestdeps,-devdeps,-predeps}{,-online}{,-cov}
44
codestyle
55
linkcheck
66
build_docs

0 commit comments

Comments
 (0)