From 9eaacdee8488b8db75a8a46cf303c6413ceca53c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= <6774676+eumiro@users.noreply.github.com> Date: Sat, 12 Dec 2020 16:38:22 +0100 Subject: [PATCH 1/2] Add Python 3.9 support --- .github/workflows/test.yml | 2 +- tox.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 641a572..b40e949 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] taskwarrior-version: [2.5.0, 2.5.1] steps: - uses: actions/checkout@v2 diff --git a/tox.ini b/tox.ini index c6101b5..46e633e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,35,36,37,38}-tw{250,251} +envlist = py{27,35,36,37,38,39}-tw{250,251} downloadcache = {toxworkdir}/_download/ [testenv] @@ -9,6 +9,7 @@ basepython = py36: python3.6 py37: python3.7 py38: python3.8 + py39: python3.9 deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test_requirements.txt From eafa42361316d7e258434fe4d4a0590bec78eafd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= <6774676+eumiro@users.noreply.github.com> Date: Sat, 12 Dec 2020 16:39:17 +0100 Subject: [PATCH 2/2] Add Taskwarrior 2.5.2 --- .github/workflows/test.yml | 2 +- tox.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b40e949..fc8ff18 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] - taskwarrior-version: [2.5.0, 2.5.1] + taskwarrior-version: [2.5.0, 2.5.1, 2.5.2] steps: - uses: actions/checkout@v2 - name: Set up Python ${{matrix.python-version}} diff --git a/tox.ini b/tox.ini index 46e633e..2c639f9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,35,36,37,38,39}-tw{250,251} +envlist = py{27,35,36,37,38,39}-tw{250,251,252} downloadcache = {toxworkdir}/_download/ [testenv] @@ -16,6 +16,7 @@ deps = setenv = tw250: TASKWARRIOR=v2.5.0 tw251: TASKWARRIOR=v2.5.1 + tw252: TASKWARRIOR=v2.5.2 sitepackages = False commands = {toxinidir}/.tox_build_taskwarrior.sh "{envdir}" "{toxinidir}"