From df01c653d33980b97919f1ffae26665fc05b3699 Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Fri, 9 Oct 2020 10:11:15 -0300 Subject: [PATCH 1/2] Test Python 3.9 --- .github/workflows/python-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 0661fc1..2c467c5 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, pypy3] + python-version: [3.6, 3.7, 3.8, 3.9, pypy3] steps: - uses: actions/checkout@v2 From 7fe7bedd243333b466859fd75325155e8adc2cef Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Fri, 9 Oct 2020 10:16:50 -0300 Subject: [PATCH 2/2] Add 3.9 to tox --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index d5bb105..828524a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{36,37,38}-pillow{70,71,-latest},pypy3,check +envlist = py{36,37,38,39}-pillow{70,71,-latest},pypy3,check skip_missing_interpreters = True [gh-actions] @@ -7,6 +7,7 @@ python = 3.6: py36-pillow70 3.7: py37-pillow71 3.8: py38-pillow-latest, check + 3.9: py39-pillow-latest pypy3: pypy3 [testenv]