From daf54e79fcb8f549699d28e691302a9251f7e54b Mon Sep 17 00:00:00 2001 From: Christian Riedel Date: Wed, 24 Mar 2021 12:07:33 +0100 Subject: [PATCH] Added toml as extra (#410) * added toml extra * Update AUTHORS.rst * Update CHANGELOG.rst * chain toml dependency to coverage's toml dependency Co-authored-by: Thomas Grainger * move coverage's toml dependency from extras to install_requires * udpate changelog phrase Co-authored-by: Thomas Grainger --- AUTHORS.rst | 1 + CHANGELOG.rst | 7 +++++++ setup.py | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 30d5907b..8c715b1e 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -44,3 +44,4 @@ Authors * Michał Górny - https://github.com/mgorny * Bernát Gábor - https://github.com/gaborbernat * Pamela McA'Nulty - https://github.com/PamelaM +* Christian Riedel - https://github.com/Cielquan diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cc865bfe..904fa0d8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= + +2.12.0 (2021-03-??) +------------------- + +* Added coverage's `toml` extra to install requirements in setup.py. + Contributed by Christian Riedel in `#410 `_. + 2.11.1 (2021-01-20) ------------------- diff --git a/setup.py b/setup.py index 7abccf58..a00ae0af 100755 --- a/setup.py +++ b/setup.py @@ -124,7 +124,7 @@ def run(self): ], install_requires=[ 'pytest>=4.6', - 'coverage>=5.2.1' + 'coverage[toml]>=5.2.1' ], python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', extras_require={