From 6ffaa837bd579a0c5eb685a3f8e6352ef900a8a8 Mon Sep 17 00:00:00 2001 From: Alexandre Teles Date: Tue, 22 Nov 2022 21:53:10 -0300 Subject: [PATCH] fix: bump python version The MyPy workflow requires the latest minor Python version, or it refuses to run :/ --- .github/workflows/mypy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 90607a3..e56f370 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -12,7 +12,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: 3.10.7 + python-version: 3.10.8 architecture: x64 - name: Checkout uses: actions/checkout@v3