From 137956c496765f7f978907bfdeddcd9df20d5fb4 Mon Sep 17 00:00:00 2001 From: Maxime Arthaud Date: Mon, 11 Sep 2023 12:04:14 -0700 Subject: [PATCH] Run our github CI tests with Python 3.11 (#103) Summary: As titled. Reviewed By: anwesht Differential Revision: D49007748 --- .github/workflows/pyre.yml | 2 +- .github/workflows/tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pyre.yml b/.github/workflows/pyre.yml index 3359e030..34018204 100644 --- a/.github/workflows/pyre.yml +++ b/.github/workflows/pyre.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4e22a19c..f24761b6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2