At Fri, 08 Jan 2016 17:14:08 +0900 (JST), FUJITA Tomonori wrote: > > On Fri, 08 Jan 2016 12:47:44 +0900 > IWAMOTO Toshihiro <[email protected]> wrote: > > > At Tue, 8 Dec 2015 05:57:54 -0800, > > FUJITA Tomonori wrote: > >> > >> oslo.config v3.1.0 dropped python2.6 support: > >> > >> https://github.com/openstack/oslo.config/commit/9470f19eacb99425055946bd4a6079b71406ff1b > > > > It seems that this commit is causing some issue. > > > > https://bugs.launchpad.net/neutron/+bug/1531837 > > > > Could an environment marker be used to cap oslo.config version only in > > python2.6? > > > > http://pip.readthedocs.org/en/stable/reference/pip_install/#requirement-specifiers > > Oops, the following looks ok?
Yes. I think so. > diff --git a/tools/pip-requires b/tools/pip-requires > index 6f3f591..c274774 100644 > --- a/tools/pip-requires > +++ b/tools/pip-requires > @@ -1,7 +1,8 @@ > eventlet>=0.15 > msgpack-python>=0.3.0 # RPC library, BGP speaker(net_cntl) > netaddr > -oslo.config>=1.6.0, <=3.0.0 > +oslo.config>=1.6.0, <=3.0.0 ; python_version < '2.7' > +oslo.config>=1.6.0 ; python_version >= '2.7' > routes # wsgi > six>=1.4.0 > webob>=1.2 # wsgi > ------------------------------------------------------------------------------ _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
