diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2023-05-02 19:28:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-02 13:28:24 -0400 |
commit | 68a4b2e4e46f6664980f0f96d3b9a68ba7198eb7 (patch) | |
tree | cee10dbb815a265686c0552f4da2c384ee500f0b /.github/workflows/unit_tests.yaml | |
parent | 131e1c09379d346a468e754e06b498c6bf8394b7 (diff) | |
download | spack-68a4b2e4e46f6664980f0f96d3b9a68ba7198eb7.tar.gz spack-68a4b2e4e46f6664980f0f96d3b9a68ba7198eb7.tar.bz2 spack-68a4b2e4e46f6664980f0f96d3b9a68ba7198eb7.tar.xz spack-68a4b2e4e46f6664980f0f96d3b9a68ba7198eb7.zip |
GitHub Actions: do not install six in CI (#37361)
* GitHub Actions: do not install six in CI
* Remove workflow code that was commented out
* Remove any use of "six" from packages
Diffstat (limited to '.github/workflows/unit_tests.yaml')
-rw-r--r-- | .github/workflows/unit_tests.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 628cab9749..3a37dc7984 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -62,7 +62,7 @@ jobs: cmake bison libbison-dev kcov - name: Install Python packages run: | - pip install --upgrade pip six setuptools pytest pytest-xdist pytest-cov + pip install --upgrade pip setuptools pytest pytest-xdist pytest-cov pip install --upgrade flake8 "isort>=4.3.5" "mypy>=0.900" "click" "black" - name: Setup git configuration run: | @@ -107,7 +107,7 @@ jobs: sudo apt-get install -y coreutils kcov csh zsh tcsh fish dash bash - name: Install Python packages run: | - pip install --upgrade pip six setuptools pytest coverage[toml] pytest-xdist + pip install --upgrade pip setuptools pytest coverage[toml] pytest-xdist - name: Setup git configuration run: | # Need this for the git tests to succeed. @@ -163,7 +163,7 @@ jobs: sudo apt-get -y install coreutils cvs gfortran graphviz gnupg2 mercurial ninja-build kcov - name: Install Python packages run: | - pip install --upgrade pip six setuptools pytest coverage[toml] pytest-cov clingo pytest-xdist + pip install --upgrade pip setuptools pytest coverage[toml] pytest-cov clingo pytest-xdist - name: Setup git configuration run: | # Need this for the git tests to succeed. @@ -193,7 +193,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Python packages run: | - pip install --upgrade pip six setuptools + pip install --upgrade pip setuptools pip install --upgrade pytest coverage[toml] pytest-xdist pytest-cov - name: Setup Homebrew packages run: | |