diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2023-09-21 15:14:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-21 15:14:47 +0200 |
commit | 4c0bc390544470b5308e70fd417e97a04e4fda69 (patch) | |
tree | 700a49b69114171c9c18feef621970ca127677c9 /.github | |
parent | 501d322264f9a6117bebbc33132c4f1e2111e8c2 (diff) | |
download | spack-4c0bc390544470b5308e70fd417e97a04e4fda69.tar.gz spack-4c0bc390544470b5308e70fd417e97a04e4fda69.tar.bz2 spack-4c0bc390544470b5308e70fd417e97a04e4fda69.tar.xz spack-4c0bc390544470b5308e70fd417e97a04e4fda69.zip |
Remove Python 3.6 from bootstrap tests on Ubuntu, add 3.11 (#40131)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/bootstrap.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 10b0397e8a..f211140060 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -183,7 +183,7 @@ jobs: - name: Bootstrap clingo run: | set -ex - for ver in '3.6' '3.7' '3.8' '3.9' '3.10' ; do + for ver in '3.7' '3.8' '3.9' '3.10' '3.11' ; do not_found=1 ver_dir="$(find $RUNNER_TOOL_CACHE/Python -wholename "*/${ver}.*/*/bin" | grep . || true)" echo "Testing $ver_dir" @@ -214,7 +214,7 @@ jobs: - name: Bootstrap clingo run: | set -ex - for ver in '3.6' '3.7' '3.8' '3.9' '3.10' ; do + for ver in '3.7' '3.8' '3.9' '3.10' '3.11' ; do not_found=1 ver_dir="$(find $RUNNER_TOOL_CACHE/Python -wholename "*/${ver}.*/*/bin" | grep . || true)" echo "Testing $ver_dir" |