diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2023-10-11 19:03:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-11 19:03:17 +0200 |
commit | 861bb4d35a804be350dc576480ceef0323938580 (patch) | |
tree | e8faec7888b17427a99dbb0ffa8a7152e5ba7349 /.github/workflows/unit_tests.yaml | |
parent | 65e7ec0509a2191b0a323730e280bba8bd30395b (diff) | |
download | spack-861bb4d35a804be350dc576480ceef0323938580.tar.gz spack-861bb4d35a804be350dc576480ceef0323938580.tar.bz2 spack-861bb4d35a804be350dc576480ceef0323938580.tar.xz spack-861bb4d35a804be350dc576480ceef0323938580.zip |
Update bootstrap buildcache to support Python 3.12 (#40404)
* Add support for Python 3.12
* Use optimized build of clingo
Diffstat (limited to '.github/workflows/unit_tests.yaml')
-rw-r--r-- | .github/workflows/unit_tests.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index e82531677d..4e1d909f02 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] concretizer: ['clingo'] on_develop: - ${{ github.ref == 'refs/heads/develop' }} @@ -45,6 +45,10 @@ jobs: os: ubuntu-latest concretizer: 'clingo' on_develop: false + - python-version: '3.11' + os: ubuntu-latest + concretizer: 'clingo' + on_develop: false steps: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # @v2 @@ -185,7 +189,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # @v2 with: |