py-mypy: add v0.800 (#21386)

This commit is contained in:
Adam J. Stewart 2021-02-04 10:00:03 -06:00 committed by GitHub
parent 31722ac994
commit d14a6dc1f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -36,7 +36,7 @@ jobs:
python-version: 3.9 python-version: 3.9
- name: Install Python packages - name: Install Python packages
run: | run: |
pip install --upgrade pip six setuptools flake8 mypy black pip install --upgrade pip six setuptools flake8 mypy>=0.800 black
- name: Setup git configuration - name: Setup git configuration
run: | run: |
# Need this for the git tests to succeed. # Need this for the git tests to succeed.

View file

@ -12,10 +12,11 @@ class PyMypy(PythonPackage):
homepage = "http://www.mypy-lang.org/" homepage = "http://www.mypy-lang.org/"
pypi = "mypy/mypy-0.740.tar.gz" pypi = "mypy/mypy-0.740.tar.gz"
version('0.800', sha256='e0202e37756ed09daf4b0ba64ad2c245d357659e014c3f51d8cd0681ba66940a')
version('0.740', sha256='48c8bc99380575deb39f5d3400ebb6a8a1cb5cc669bbba4d3bb30f904e0a0e7d') version('0.740', sha256='48c8bc99380575deb39f5d3400ebb6a8a1cb5cc669bbba4d3bb30f904e0a0e7d')
depends_on('python@3.5:', type=('build', 'run')) depends_on('python@3.5:', type=('build', 'run'))
depends_on('py-setuptools', type=('build', 'run')) depends_on('py-setuptools', type=('build', 'run'))
depends_on('py-typed-ast@1.4.0:1.4.999', type=('build', 'run')) depends_on('py-typed-ast@1.4.0:1.4.999', type=('build', 'run'))
depends_on('py-typing-extensions@3.7.4:', type=('build', 'run')) depends_on('py-typing-extensions@3.7.4:', type=('build', 'run'))
depends_on('py-mypy-extensions@0.4.0:0.4.999', type=('build', 'run')) depends_on('py-mypy-extensions@0.4.3:0.4.999', type=('build', 'run'))