From 7bf4e2af3a9f22726c605c0c415c9616cbd1f9fb Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Tue, 19 Oct 2021 14:03:53 -0300 Subject: [PATCH] Run CIs only on the two ends of supported Python versions (#256) Instead of running the test suite on CIs over each supported Python version, limit it only to the two ends. Currently, they are Python 3.6 and Python 3.9. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc14875c4..2fa03f2ad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: fail-fast: false matrix: os: [ubuntu, macos, windows] - python: [3.6, 3.7, 3.8, 3.9] + python: [3.6, 3.9] # If "optional", will install non-required dependencies in the build # environment. Otherwise, only required dependencies are installed. dependencies: [""]