diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-08-04 15:26:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 15:26:56 +0200 |
commit | 0e40804cd0de0be9353d1602103eed2695a379c3 (patch) | |
tree | 2b9f271e806658bad33e6ec960d9e1676147453a /.github | |
parent | 80e6b6647ffb6f8201bf325d39bfa925b0117c4a (diff) | |
download | spack-0e40804cd0de0be9353d1602103eed2695a379c3.tar.gz spack-0e40804cd0de0be9353d1602103eed2695a379c3.tar.bz2 spack-0e40804cd0de0be9353d1602103eed2695a379c3.tar.xz spack-0e40804cd0de0be9353d1602103eed2695a379c3.zip |
Deprecate support for Python 3.5 (by removing it from CI) (#31908)
* Deprecate support for Python 3.5 (by removing it from CI)
* Restore Python 3.9
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/bootstrap.yml | 4 | ||||
-rw-r--r-- | .github/workflows/unit_tests.yaml | 6 | ||||
-rw-r--r-- | .github/workflows/windows_python.yml | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 0522829303..9dd051d0ae 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -183,7 +183,7 @@ jobs: runs-on: ${{ matrix.macos-version }} strategy: matrix: - python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] macos-version: ['macos-11', 'macos-12'] if: github.repository == 'spack/spack' steps: @@ -206,7 +206,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10'] if: github.repository == 'spack/spack' steps: - name: Checkout diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 44c00856f6..0a569d6d86 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -29,9 +29,9 @@ jobs: pip install --upgrade pip pip install --upgrade vermin - name: vermin (Spack's Core) - run: vermin --backport argparse --violations --backport typing -t=2.7- -t=3.5- -vvv lib/spack/spack/ lib/spack/llnl/ bin/ + run: vermin --backport argparse --violations --backport typing -t=2.7- -t=3.6- -vvv lib/spack/spack/ lib/spack/llnl/ bin/ - name: vermin (Repositories) - run: vermin --backport argparse --violations --backport typing -t=2.7- -t=3.5- -vvv var/spack/repos + run: vermin --backport argparse --violations --backport typing -t=2.7- -t=3.6- -vvv var/spack/repos # Run style checks on the files that have been changed style: runs-on: ubuntu-latest @@ -101,7 +101,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10'] concretizer: ['clingo'] include: - python-version: 2.7 diff --git a/.github/workflows/windows_python.yml b/.github/workflows/windows_python.yml index 37eb1082d9..e45fdb2bc8 100644 --- a/.github/workflows/windows_python.yml +++ b/.github/workflows/windows_python.yml @@ -31,9 +31,9 @@ jobs: python -m pip install --upgrade pip python -m pip install --upgrade vermin - name: vermin (Spack's Core) - run: vermin --backport argparse --backport typing -t='2.7-' -t='3.5-' -v spack/lib/spack/spack/ spack/lib/spack/llnl/ spack/bin/ + run: vermin --backport argparse --backport typing -t='2.7-' -t='3.6-' -v spack/lib/spack/spack/ spack/lib/spack/llnl/ spack/bin/ - name: vermin (Repositories) - run: vermin --backport argparse --backport typing -t='2.7-' -t='3.5-' -v spack/var/spack/repos + run: vermin --backport argparse --backport typing -t='2.7-' -t='3.6-' -v spack/var/spack/repos # Run style checks on the files that have been changed style: runs-on: windows-latest |