From d74dc7787df4fe6db0491190c93ffc44b235dddc Mon Sep 17 00:00:00 2001 From: Ilya Shchepetkov Date: Fri, 24 Apr 2020 16:25:28 +0300 Subject: [PATCH] Exclude Python 3.8 from testing on macOS Currently there are strange issues with concurrent.futures --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6e6bdc6..18d6ef8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,6 +10,8 @@ jobs: matrix: python-version: [3.5, 3.6, 3.7, 3.8] os: [ubuntu-latest, macos-latest] + exclude: + - { python-version: 3.8, os: macos-latest } steps: - uses: actions/checkout@v2