diff options
author | FUJITA Tomonori <tomof@acm.org> | 2016-02-10 14:29:46 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-02-18 06:54:47 +0900 |
commit | af5e6b5fb7bfcce070fb94c46157546a70453c34 (patch) | |
tree | bd01e263d110b468d5d1ddfdbc018cd0ed8a8d79 /tools/pip-requires | |
parent | 27409a544e45bc7a51080e83860e88cc40ce760c (diff) |
drop python2.6 support
The Python core team[*1] stopped supporting python 2.6. Some Python
libraries started following the same path and trying to support 2.6
becomes painful...
For example, most of you already noticed, oslo.config dropped 2.6
support. I tried to work around it with the following commit:
https://github.com/osrg/ryu/commit/22501710983fb79a8a337e6bf650821efdc7cf59
But this forces users of decent distributions (e.g Ubuntu 14.04) to
upgrade pip (old pip versions can't understand version conditions).
[*1]
http://www.curiousefficiency.org/posts/2015/04/stop-supporting-python26.html
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'tools/pip-requires')
-rw-r--r-- | tools/pip-requires | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/pip-requires b/tools/pip-requires index c274774d..567600f1 100644 --- a/tools/pip-requires +++ b/tools/pip-requires @@ -1,8 +1,7 @@ eventlet>=0.15 msgpack-python>=0.3.0 # RPC library, BGP speaker(net_cntl) netaddr -oslo.config>=1.6.0, <=3.0.0 ; python_version < '2.7' -oslo.config>=1.6.0 ; python_version >= '2.7' +oslo.config>=1.6.0 routes # wsgi six>=1.4.0 webob>=1.2 # wsgi |