diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-06-08 22:46:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-08 20:46:25 +0000 |
commit | fd03d539cc4610cab29ccbdf7eb298d43a1a1a82 (patch) | |
tree | 6f3d394d5ecb1740fe6ad0749fc78bada743d6a6 /.github | |
parent | 92bef1da6f82039274a13c47ff2d772c48039ecd (diff) | |
download | spack-fd03d539cc4610cab29ccbdf7eb298d43a1a1a82.tar.gz spack-fd03d539cc4610cab29ccbdf7eb298d43a1a1a82.tar.bz2 spack-fd03d539cc4610cab29ccbdf7eb298d43a1a1a82.tar.xz spack-fd03d539cc4610cab29ccbdf7eb298d43a1a1a82.zip |
mypy: add types-six to the list of installed packages (#24207)
See https://mypy-lang.blogspot.com/2021/05/the-upcoming-switch-to-modular-typeshed.html
for a broader explanation.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/unit_tests.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 804d7fa125..1cc60f593a 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -39,7 +39,7 @@ jobs: python-version: 3.9 - name: Install Python packages run: | - pip install --upgrade pip six setuptools flake8 mypy>=0.800 black + pip install --upgrade pip six setuptools flake8 mypy>=0.800 black types-six - name: Setup git configuration run: | # Need this for the git tests to succeed. |