Skip to content

Commit 246c2d3

Browse files
committed
Document minimum Python version correctly
1 parent 63afd42 commit 246c2d3

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

README.rst

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
|Travis Build Status| |Coveralls coverage|
2-
31
About
42
-----
53

@@ -18,7 +16,7 @@ section below.
1816
Installing
1917
----------
2018

21-
This plugin is compatible with Python 2.7, and 3.5 and later, and
19+
This plugin is compatible with Python 2.7, and 3.6 and later, and
2220
requires `pytest <http://pytest.org>`__ and
2321
`matplotlib <http://www.matplotlib.org>` to be installed.
2422

@@ -285,10 +283,6 @@ install the latest version of the plugin then do::
285283
The reason for having to install the plugin first is to ensure that the
286284
plugin is correctly loaded as part of the test suite.
287285

288-
.. |Travis Build Status| image:: https://travis-ci.org/matplotlib/pytest-mpl.svg?branch=master
289-
:target: https://travis-ci.org/matplotlib/pytest-mpl
290-
.. |Coveralls coverage| image:: https://coveralls.io/repos/matplotlib/pytest-mpl/badge.svg
291-
:target: https://coveralls.io/r/matplotlib/pytest-mpl
292286
.. |expected| image:: images/baseline-coords_overlay_auto_coord_meta.png
293287
.. |actual| image:: images/coords_overlay_auto_coord_meta.png
294288
.. |diff| image:: images/coords_overlay_auto_coord_meta-failed-diff.png

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@ classifiers =
1919
license = BSD
2020
description = pytest plugin to help with testing figures output from Matplotlib
2121
long_description = file: README.rst
22+
long_description_content_type = text/x-rst
2223

2324
[options]
2425
zip_safe = True
2526
packages = find:
27+
python_requires = >=3.6
2628
install_requires =
2729
pytest
2830
matplotlib

0 commit comments

Comments
 (0)