From 3fa57e4e2b69bd0e36bf26474f87cd4b1703aaaf Mon Sep 17 00:00:00 2001 From: Brian Torres-Gil Date: Wed, 31 Mar 2021 10:01:36 -0700 Subject: [PATCH] ci: Removing py3.5 We still support python 3.5 in this version, but it is becoming more difficult as ci tests are starting to fail and be hard to maintain. Rather than continue to fight to support py3.5, we will remove py3.5 support in the next major release. For now, we are just removing it from CI tests. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b6ffda5..0147e882 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: [3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2