diff --git a/.github/workflows/python-build.yml b/.github/workflows/python-build.yml index 0a3de40b..bd69796e 100644 --- a/.github/workflows/python-build.yml +++ b/.github/workflows/python-build.yml @@ -18,9 +18,9 @@ jobs: fail-fast: false matrix: cfg: - - {os: windows-latest, python-version: '3.10', architecture: x64} - - {os: macos-latest, python-version: '3.10', architecture: x64} - - {os: ubuntu-latest, python-version: '3.10', architecture: x64} + - {os: windows-latest, python-version: '3.12', architecture: x64} + - {os: macos-latest, python-version: '3.12', architecture: x64} + - {os: ubuntu-latest, python-version: '3.12', architecture: x64} steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/python-stylecheck.yml b/.github/workflows/python-stylecheck.yml index b9f34cc0..659eeba6 100644 --- a/.github/workflows/python-stylecheck.yml +++ b/.github/workflows/python-stylecheck.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10'] + python-version: ['3.12'] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/python-unittests.yml b/.github/workflows/python-unittests.yml index ec355e88..b9b3b90a 100644 --- a/.github/workflows/python-unittests.yml +++ b/.github/workflows/python-unittests.yml @@ -16,8 +16,9 @@ jobs: unittests: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: - python-version: ['3.10', '3.11'] + python-version: ['3.11', '3.12'] os: [windows-latest, macos-latest, ubuntu-latest] steps: - uses: actions/checkout@v2