From e682ef6e7dee191ea081bae7618c6d94be8a1218 Mon Sep 17 00:00:00 2001 From: PieterCK Date: Wed, 26 Jun 2024 15:13:53 +0700 Subject: [PATCH] test workflow: Upgrade Python version to 3.10. This commit only upgrade the Python version for github workflows when running tests. The previous Python version of 3.8.18 have some outdated mypy linting error over at the bots/slasesforce.py file This commit doesn't try to drop support for Python 3.8. --- .github/workflows/zulip-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/zulip-tests.yml b/.github/workflows/zulip-tests.yml index 3ac833fc2..3a6a78752 100644 --- a/.github/workflows/zulip-tests.yml +++ b/.github/workflows/zulip-tests.yml @@ -13,10 +13,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.10" - name: Install dependencies run: tools/provision --force