From 3fb27bfbb60dfbfeb8bea838fb9e98693d9f0149 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 24 Oct 2019 08:38:45 -0300 Subject: [PATCH] Add testing for Python 3.8 --- .github/workflows/main.yml | 4 +++- tox.ini | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 318a5d4..669aada 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - python: ["2.7", "3.5", "3.6", "3.7"] + python: ["2.7", "3.5", "3.6", "3.7", "3.8"] os: [ubuntu-latest, windows-latest] include: - python: "2.7" @@ -21,6 +21,8 @@ jobs: tox_env: "py36" - python: "3.7" tox_env: "py37" + - python: "3.8" + tox_env: "py38" steps: - uses: actions/checkout@v1 diff --git a/tox.ini b/tox.ini index 1911734..f59a800 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,34,35,36,37}, linting, norewrite +envlist = py{27,34,35,36,37,38}, linting, norewrite [testenv] passenv = USER USERNAME