Browse code

Add ansible-test six constraint for Python 2.6.

Matt Clay authored on 2021/04/02 05:29:54
Showing 2 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,2 @@
0
+bugfixes:
1
+  - ansible-test - Add a ``six < 1.14.0`` constraint for Python 2.6.
... ...
@@ -2,6 +2,7 @@ resolvelib >= 0.5.3, < 0.6.0  # keep in sync with `requirements.txt`
2 2
 coverage >= 4.5.1, < 5.0.0 ; python_version <  '3.7' # coverage 4.4 required for "disable_warnings" support but 4.5.1 needed for bug fixes, coverage 5.0+ incompatible
3 3
 coverage >= 4.5.2, < 5.0.0 ; python_version == '3.7' # coverage 4.5.2 fixes bugs in support for python 3.7, coverage 5.0+ incompatible
4 4
 coverage >= 4.5.4, < 5.0.0 ; python_version >  '3.7' # coverage had a bug in < 4.5.4 that would cause unit tests to hang in Python 3.8, coverage 5.0+ incompatible
5
+six < 1.14.0 ; python_version < '2.7' # six 1.14.0 drops support for python 2.6
5 6
 cryptography < 2.2 ; python_version < '2.7' # cryptography 2.2 drops support for python 2.6
6 7
 # do not add a cryptography constraint here unless it is for python version incompatibility, see the get_cryptography_requirement function in executor.py for details
7 8
 deepdiff < 4.0.0 ; python_version < '3' # deepdiff 4.0.0 and later require python 3