diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-11-14 13:11:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 13:11:28 +0100 |
commit | 3efa4ee26fac9c9a3cd3d6bf077faa20ccf229c6 (patch) | |
tree | e72dcf67429f424332a3696d3be7e0ea8c166baf /.github/workflows/unit_tests.yaml | |
parent | f4c3d980647cd1fad8a9b179eef1461bfad77469 (diff) | |
download | spack-3efa4ee26fac9c9a3cd3d6bf077faa20ccf229c6.tar.gz spack-3efa4ee26fac9c9a3cd3d6bf077faa20ccf229c6.tar.bz2 spack-3efa4ee26fac9c9a3cd3d6bf077faa20ccf229c6.tar.xz spack-3efa4ee26fac9c9a3cd3d6bf077faa20ccf229c6.zip |
Remove support for running with Python 2.7 (#33063)
* Remove CI jobs related to Python 2.7
* Remove Python 2.7 specific code from Spack core
* Remove externals for Python 2 only
* Remove llnl.util.compat
Diffstat (limited to '.github/workflows/unit_tests.yaml')
-rw-r--r-- | .github/workflows/unit_tests.yaml | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 6a21d166f8..efb8949e23 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -14,14 +14,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] concretizer: ['clingo'] on_develop: - ${{ github.ref == 'refs/heads/develop' }} include: - - python-version: 2.7 - concretizer: original - on_develop: ${{ github.ref == 'refs/heads/develop' }} - python-version: '3.11' concretizer: original on_develop: ${{ github.ref == 'refs/heads/develop' }} @@ -66,10 +63,6 @@ jobs: if python -c 'import sys; sys.exit(not sys.version_info >= (3, 6))'; then pip install --upgrade flake8 "isort>=4.3.5" "mypy>=0.900" "click==8.0.4" "black<=21.12b0" fi - - name: Pin pathlib for Python 2.7 - if: ${{ matrix.python-version == 2.7 }} - run: | - pip install -U pathlib2==2.3.6 toml - name: Setup git configuration run: | # Need this for the git tests to succeed. @@ -89,7 +82,7 @@ jobs: SPACK_TEST_SOLVER: ${{ matrix.concretizer }} SPACK_TEST_PARALLEL: 2 COVERAGE: true - UNIT_TEST_COVERAGE: ${{ (matrix.python-version == '3.11') }} + UNIT_TEST_COVERAGE: ${{ matrix.python-version == '3.11' }} run: | share/spack/qa/run-unit-tests - uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 |