summaryrefslogtreecommitdiff
path: root/.github/workflows/valid-style.yml
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2022-11-05 15:59:12 +0100
committerGitHub <noreply@github.com>2022-11-05 15:59:12 +0100
commit5558940ce6fee399155bd31be7f1c8c361691979 (patch)
tree9caf76796896087b0f1b127152996d9e891cd3fe /.github/workflows/valid-style.yml
parentc9fcb8aadc2ded5bcaa999f108f0c92213824ee2 (diff)
downloadspack-5558940ce6fee399155bd31be7f1c8c361691979.tar.gz
spack-5558940ce6fee399155bd31be7f1c8c361691979.tar.bz2
spack-5558940ce6fee399155bd31be7f1c8c361691979.tar.xz
spack-5558940ce6fee399155bd31be7f1c8c361691979.zip
Add support for Python 3.11 (#33505)
Argparse started raising ArgumentError exceptions when the same parser is added twice. Therefore, we perform the addition only if the parser is not there already Port match syntax to our unparser
Diffstat (limited to '.github/workflows/valid-style.yml')
-rw-r--r--.github/workflows/valid-style.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/valid-style.yml b/.github/workflows/valid-style.yml
index d91f6e958a..a82c786b44 100644
--- a/.github/workflows/valid-style.yml
+++ b/.github/workflows/valid-style.yml
@@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # @v2
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # @v2
with:
- python-version: '3.10'
+ python-version: '3.11'
cache: 'pip'
- name: Install Python Packages
run: |
@@ -40,7 +40,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # @v2
with:
- python-version: '3.10'
+ python-version: '3.11'
cache: 'pip'
- name: Install Python packages
run: |
@@ -57,4 +57,4 @@ jobs:
uses: ./.github/workflows/audit.yaml
with:
with_coverage: ${{ inputs.with_coverage }}
- python_version: '3.10'
+ python_version: '3.11'