From 1fa1270e00bd6ce351cf3a02ed785df9a8c17176 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Fri, 3 Dec 2021 08:08:35 +0000 Subject: [PATCH] Bump pyright version to 1.1.192 (#6478) --- .github/workflows/tests.yml | 2 +- tests/pyright_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index db58e16cd..ead7bcf08 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -71,7 +71,7 @@ jobs: python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] fail-fast: false env: - PYRIGHT_VERSION: 1.1.187 # Must match pyright_test.py. + PYRIGHT_VERSION: 1.1.192 # Must match pyright_test.py. steps: - uses: actions/checkout@v2 - uses: jakebailey/pyright-action@v1 diff --git a/tests/pyright_test.py b/tests/pyright_test.py index 312b4d4a8..6a10d14e0 100755 --- a/tests/pyright_test.py +++ b/tests/pyright_test.py @@ -5,7 +5,7 @@ import subprocess import sys from pathlib import Path -_PYRIGHT_VERSION = "1.1.187" # Must match tests.yml. +_PYRIGHT_VERSION = "1.1.192" # Must match tests.yml. _WELL_KNOWN_FILE = Path("tests", "pyright_test.py")