From ffaeb72b9a3c97d074bbef9d2cb370fdec504770 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 13 Feb 2019 19:38:49 -0500 Subject: Pin to old versions of pytest as workaround for manahl/pytest-plugins#110. --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index c2bac45..2acfd2f 100644 --- a/tox.ini +++ b/tox.ini @@ -7,6 +7,8 @@ deps = setuptools>=31.0.1 # workaround for yaml/pyyaml#126 # git+https://github.com/yaml/pyyaml@master#egg=pyyaml;python_version=="3.7" + # workaround for https://github.com/manahl/pytest-plugins/issues/110 + pytest < 4 commands = py.test {posargs} python setup.py checkdocs -- cgit v1.2.1 From 5987484a6c1f48d733bb525bfe316500002b6993 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 13 Feb 2019 19:48:51 -0500 Subject: Add workaround for manahl/pytest-plugins/issues/122 --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index 2acfd2f..1d5e281 100644 --- a/tox.ini +++ b/tox.ini @@ -9,6 +9,8 @@ deps = # git+https://github.com/yaml/pyyaml@master#egg=pyyaml;python_version=="3.7" # workaround for https://github.com/manahl/pytest-plugins/issues/110 pytest < 4 + # workaround for https://github.com/manahl/pytest-plugins/issues/122 + virtualenv commands = py.test {posargs} python setup.py checkdocs -- cgit v1.2.1 From 0ae1e5aad39f53333150837539417a4d7c38920d Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 6 Feb 2019 09:54:00 -0500 Subject: Suppress E117 as workaround for PyCQA/pycodestyle#836 --- .flake8 | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index e9955e7..04d2d97 100644 --- a/.flake8 +++ b/.flake8 @@ -1,2 +1,10 @@ [flake8] -ignore = W191,W503 +ignore = + # Allow tabs for indentation + W191 + # Workaround for https://github.com/PyCQA/pycodestyle/issues/836 + E117 + # W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513 + W503 + # W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545 + W504 -- cgit v1.2.1 From 1d0e60b043f7ea7ff421450ca5c3ce1c924e8ab3 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Thu, 14 Feb 2019 08:14:13 -0500 Subject: Update changelog. Ref #43. --- CHANGES.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 3fa11b9..02d5618 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,14 @@ +4.3.1 +===== + +* #43: Re-release of 4.2 to supersede the 4.3 release which + proved to be backward-incompatible in that it requires + setuptools 30.4 or possibly later (to install). In the future, a + backward-incompatible release will re-release these changes. + For projects including pytest-runner, particularly as + ``setup_requires``, if support for older setuptools is required, + please pin to ``pytest-runner < 5``. + 4.2 === -- cgit v1.2.1