Python 2.6: drop support and require Python 2.7 or greater
The main reason for supporting Python 2.6 was the EL6 distros.
Although they are still important, our users are running a combination
of Avocado LTS and Avocado-VT. That allows us to drop support for
Python 2.6 on master (and further Avocado releases).
Also, with Python 2.6 being dropped as a supported platform, the
version of the stevedore library can be simplified. Let's reflect
that on both setup.py and requirements*.txt.
Signed-off-by: NCleber Rosa <crosa@redhat.com>
Showing
... | ... | @@ -10,13 +10,6 @@ pyliblzma>=0.5.3 |
# REST client (avocado.core.restclient) | ||
requests>=1.2.3 | ||
# stevedore for loading "new style" plugins | ||
stevedore>=1.8.0; python_version >= '2.7' | ||
# stevedore-1.11.0 won't support python2.6 anymore | ||
stevedore>=1.8.0,<=1.10.0; python_version < '2.7' | ||
# Additional python 2.6 specific requirements for avocado and unittests (backports) | ||
argparse>=1.3.0; python_version < '2.7' | ||
logutils>=0.3.3; python_version < '2.7' | ||
importlib>=1.0.3; python_version < '2.7' | ||
unittest2>=1.0.0; python_version < '2.7' | ||
stevedore>=1.8.0 | ||
# Aexpect is now used on Docker plugin | ||
aexpect>=1.2.0 |
想要评论请 注册 或 登录