Update pytype and pyright (#6222)

* Upgrade pytype

* Update pyright
This commit is contained in:
Sebastian Rittau
2021-11-02 17:19:07 +01:00
committed by GitHub
parent 7e4a0cbbd2
commit ce94db762c
3 changed files with 3 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ jobs:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
fail-fast: false
env:
PYRIGHT_VERSION: 1.1.175 # Must match pyright_test.py.
PYRIGHT_VERSION: 1.1.184 # Must match pyright_test.py.
steps:
- uses: actions/checkout@v2
- uses: jakebailey/pyright-action@v1

View File

@@ -1,5 +1,5 @@
mypy==0.910
pytype==2021.10.11
pytype==2021.10.25
typed-ast==1.4.3
black==21.9b0
flake8==4.0.1

View File

@@ -5,7 +5,7 @@ import subprocess
import sys
from pathlib import Path
_PYRIGHT_VERSION = "1.1.175" # Must match tests.yml.
_PYRIGHT_VERSION = "1.1.184" # Must match tests.yml.
_WELL_KNOWN_FILE = Path("tests", "pyright_test.py")