From 1ddc5509132a548ff4833e1a96ef6f8c3250cbeb Mon Sep 17 00:00:00 2001 From: Ewald de Wit Date: Tue, 3 Jan 2023 09:19:31 +0100 Subject: [PATCH] Fix older Python builds on Ubuntu --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb5c78a..6263d85 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,15 +4,15 @@ on: [ push, pull_request ] jobs: build: - runs-on: ${{ matrix.os }}-latest + runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu, macos, windows] + os: [ubuntu-latest, macos-latest, windows-latest] python-version: [ 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", pypy-3.9 ] exclude: - - os: ubuntu + - os: ubuntu-latest python-version: 3.5 - - os: ubuntu + - os: ubuntu-latest python-version: 3.6 include: - os: ubuntu-20.04