Skip to content

Commit 295b8c9

Browse files
committed
Update Pillow, allowing tox tests with Py 3.9.
1 parent d55dc04 commit 295b8c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8]
12+
python-version: [3.6, 3.7, 3.8, 3.9]
1313

1414
steps:
1515
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
]
2020
requireExamples = [
2121
'DBUtils>=2,<4', 'dominate>=2.5,<3', 'yattag>=1.13,<2',
22-
'Pygments>=2.6,<3', 'Pillow>=7,<9'
22+
'Pygments>=2.6,<3', 'Pillow>=8,<9'
2323
]
2424
requireTests = [
2525
'psutil>=5.7,<6', 'flake8>=3.8,<4', 'pylint>=2.6,<3', 'tox>=3.20,<4',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38}, flake8, pylint, docs, manifest
2+
envlist = py{36,37,38,39}, flake8, pylint, docs, manifest
33

44
[testenv:flake8]
55
basepython = python3.8

0 commit comments

Comments
 (0)