From 2089e809e85928a85dd6865822811f0f8625f7ec Mon Sep 17 00:00:00 2001 From: cn Date: Fri, 21 May 2021 14:04:19 +0200 Subject: [PATCH] module: support Python 3 only --- .github/workflows/ci.yml | 6 ++---- library/tox.ini | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 112b64b..a5f095b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,14 +12,12 @@ on: jobs: build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest strategy: matrix: python-version: - - '2.7' - - '3.4' - - '3.5' - '3.7' + - '3.8' - '3.9' steps: - uses: actions/checkout@v2 diff --git a/library/tox.ini b/library/tox.ini index fce9b3d..88e1021 100644 --- a/library/tox.ini +++ b/library/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,34,35,37,38,39},qa +envlist = py{37,38,39},qa skip_missing_interpreters = True [testenv] @@ -11,7 +11,7 @@ deps = mock pytest>=3.1 pytest-cov - + [testenv:qa] commands = flake8