From 2d023b4ac9df19d6fd0c9e520180d6f2ee9eb246 Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@k1024.org>
Date: Sun, 9 Oct 2022 22:37:08 +0300
Subject: [PATCH] Switch CI images to newest and drop Python < 3.7

The Ubuntu 18 image with Python 3.4 is going away soon. Python 3.6 is no longer supported on newest Ubuntu *and* MacOS, so let's just switch the CI image to newer versions. If this makes the CI pass again, I'll bump supported Python versions.
---
 .github/workflows/ci.yml | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7dee1e1..f6ecc10 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,21 +20,16 @@ jobs:
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
-        os: [ubuntu-latest, macos-latest]
+        os: [ubuntu-22.04, macos-12]
         python-version:
-          - '3.5'
-          - '3.6'
           - '3.7'
           - '3.8'
           - '3.9'
-          - '3.10-dev'
-          - 'pypy-3.6'
+          - '3.10'
           - 'pypy-3.7'
-        include:
-          - os: ubuntu-18.04
-            python-version: '3.4'
-            installTyping: ${{ true }}
-      fail-fast: true
+          - 'pypy-3.8'
+          - 'pypy-3.9'
+      fail-fast: false
 
     steps:
       - name: Checkout
-- 
2.39.5