Skip to content

Commit 182a65a

Browse files
committed
Drop support for Python 3.5 and earlier, as well as Matplotlib 1.5
1 parent d944a53 commit 182a65a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,19 @@ matrix:
1414
# Test the oldest and newest configuration on Mac and Windows
1515
- os: osx
1616
language: c
17-
env: PYTHON_VERSION=2.7 TOXENV=py27-test-mpl15
17+
env: PYTHON_VERSION=3.6 TOXENV=py36-test-mpl20
1818
- os: osx
1919
language: c
2020
env: PYTHON_VERSION=3.8 TOXENV=py38-test-mpl31
2121
- os: windows
2222
language: c
23-
env: PYTHON_VERSION=2.7 TOXENV=py27-test-mpl15
23+
env: PYTHON_VERSION=3.6 TOXENV=py36-test-mpl20
2424
- os: windows
2525
language: c
2626
env: PYTHON_VERSION=3.8 TOXENV=py38-test-mpl31
2727
# Test all configurations on Linux
28-
- python: 2.7
29-
env: TOXENV=py27-test-mpl15
30-
- python: 3.5
31-
env: TOXENV=py35-test-mpl20
28+
- python: 3.6
29+
env: TOXENV=py36-test-mpl20
3230
- python: 3.6
3331
env: TOXENV=py36-test-mpl21
3432
- python: 3.6

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
- Properly register mpl_image_compare marker with pytest. [#83]
77

8+
- Drop support for Python 3.5 and earlier, and Matplotlib 1.5. [#87]
9+
810
0.10 (2018-09-25)
911
-----------------
1012

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{27,35,36,37,38}-test
3+
py{36,37,38}-test
44
codestyle
55
requires =
66
setuptools >= 30.3.0

0 commit comments

Comments
 (0)