From f45c737c0ad87358dec6a8973b51216c4d1942ac Mon Sep 17 00:00:00 2001 From: Andreas Maier Date: Fri, 15 Jan 2021 07:38:12 +0100 Subject: [PATCH] Mitigated the coveralls HTTP status 422 Details: * coveralls-python 3.0.0 has an issue whereby the coveralls.io site responds with HTTP status 422. Mitigated this by pinning coveralls-python to <3.0.0. See also TheKevJames/coveralls-python#252. Signed-off-by: Andreas Maier --- dev-requirements.txt | 2 +- docs/changes.rst | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 9c5e8418e..e032cf77c 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -36,7 +36,7 @@ coverage>=5.0; python_version == '2.7' or python_version >= '3.5' pytest-cov>=2.7.0; python_version == '2.7' or python_version >= '3.5' # coveralls 2.0 has removed support for Python 2.7 and 3.4 git+https://github.com/andy-maier/coveralls-python.git@andy/add-py27#egg=coveralls; python_version == '2.7' -coveralls>=2.1.2; python_version >= '3.5' +coveralls>=2.1.2,<3.0.0; python_version >= '3.5' # Safety CI by pyup.io # safety 1.9.0 removed support for Python 2.7 and 3.4 (and now also enforces that) diff --git a/docs/changes.rst b/docs/changes.rst index c7c64ba0a..6793d5ddc 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -49,6 +49,9 @@ Released: 2021-01-02 * Increased minimum pywbem version from 1.1.1 to 1.1.3 to pick up fixes. +* Mitigated the coveralls HTTP status 422 by pinning coveralls-python to + <3.0.0. + **Enhancements:** * Migrated from Travis and Appveyor to GitHub Actions. This required several