From f626da6553ae92859dfb684e7d764fd89556e68b Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Tue, 30 Mar 2021 11:57:55 -0700 Subject: [PATCH] Bump pyright to 1.1.126, enable 3.10 testing (#5153) --- .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 0d82ba341..1fea83f91 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -92,7 +92,7 @@ jobs: strategy: matrix: python-platform: ["Linux", "Windows", "Darwin"] - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9, '3.10'] fail-fast: false steps: - uses: actions/checkout@v2 diff --git a/tests/pyright_test.py b/tests/pyright_test.py index 6f9899518..1ce0e0f7a 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.118" +_PYRIGHT_VERSION = "1.1.126" _WELL_KNOWN_FILE = Path("tests", "pyright_test.py")