From a5f1eac6540a80ca57a0547788239c2bcd527da4 Mon Sep 17 00:00:00 2001 From: Stuart Mumford Date: Fri, 2 Jul 2021 12:43:57 +0100 Subject: [PATCH 1/2] Document minimum Python version correctly --- README.rst | 8 +------- setup.cfg | 2 ++ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index 933c67e8..49a68d03 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,3 @@ -|Travis Build Status| |Coveralls coverage| - About ----- @@ -18,7 +16,7 @@ section below. Installing ---------- -This plugin is compatible with Python 2.7, and 3.5 and later, and +This plugin is compatible with Python 2.7, and 3.6 and later, and requires `pytest `__ and `matplotlib ` to be installed. @@ -285,10 +283,6 @@ install the latest version of the plugin then do:: The reason for having to install the plugin first is to ensure that the plugin is correctly loaded as part of the test suite. -.. |Travis Build Status| image:: https://travis-ci.org/matplotlib/pytest-mpl.svg?branch=master - :target: https://travis-ci.org/matplotlib/pytest-mpl -.. |Coveralls coverage| image:: https://coveralls.io/repos/matplotlib/pytest-mpl/badge.svg - :target: https://coveralls.io/r/matplotlib/pytest-mpl .. |expected| image:: images/baseline-coords_overlay_auto_coord_meta.png .. |actual| image:: images/coords_overlay_auto_coord_meta.png .. |diff| image:: images/coords_overlay_auto_coord_meta-failed-diff.png diff --git a/setup.cfg b/setup.cfg index 38f6129e..b56d9f49 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,10 +19,12 @@ classifiers = license = BSD description = pytest plugin to help with testing figures output from Matplotlib long_description = file: README.rst +long_description_content_type = text/x-rst [options] zip_safe = True packages = find: +python_requires = >=3.6 install_requires = pytest matplotlib From 4e48e4012218f9be9c5f2f8453e19428cbe118bb Mon Sep 17 00:00:00 2001 From: Stuart Mumford Date: Fri, 2 Jul 2021 15:37:54 +0100 Subject: [PATCH 2/2] repare 0.12.1 --- CHANGES.md | 5 +++++ setup.cfg | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 400a2a2e..aab32234 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +0.12.1 (2021-07-02) +------------------- + +- Fix specification of required Python version in setup.cfg. [#122] + 0.12 (2020-11-05) ----------------- diff --git a/setup.cfg b/setup.cfg index b56d9f49..597f047e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] license_file = LICENSE name = pytest-mpl -version = 0.12 +version = 0.12.1 url = https://github.com/matplotlib/pytest-mpl author = Thomas Robitaille author_email = thomas.robitaille@gmail.com