Re: [openstack-dev] Taskflow for Juno RC1 effectively require Kombu 3.x

2014-10-06 Thread Joshua Harlow
This is fixed (or should be): https://pypi.python.org/pypi/taskflow/0.5.0 - Josh On Oct 1, 2014, at 3:55 AM, Thomas Goirand z...@debian.org wrote: Hi, When building the latest release (eg: Juno RC1) of Taskflow 0.4, needed by Cinder, I've notice failures due to the impossibility to do:

[openstack-dev] Taskflow for Juno RC1 effectively require Kombu 3.x

2014-10-01 Thread Thomas Goirand
Hi, When building the latest release (eg: Juno RC1) of Taskflow 0.4, needed by Cinder, I've notice failures due to the impossibility to do: from kombu import message More in details, the failure is: == FAIL:

Re: [openstack-dev] Taskflow for Juno RC1 effectively require Kombu 3.x

2014-10-01 Thread Ihar Hrachyshka
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 01/10/14 12:55, Thomas Goirand wrote: Hi, When building the latest release (eg: Juno RC1) of Taskflow 0.4, needed by Cinder, I've notice failures due to the impossibility to do: from kombu import message More in details, the failure

Re: [openstack-dev] Taskflow for Juno RC1 effectively require Kombu 3.x

2014-10-01 Thread Ian Cordasco
There just needs to be a fallback import. In v2.5.0 the Message class (which is the only item used from kombu.message) was in kombu.transport.base. Thomas, can you confirm that something like try: from kombu import message except ImportError: from kombu.transport import base as message

Re: [openstack-dev] Taskflow for Juno RC1 effectively require Kombu 3.x

2014-10-01 Thread Jeremy Stanley
On 2014-10-01 16:04:37 -0007 (-0007), Joshua Harlow wrote: Thanks for finding this one (it'd be nice for some gate job to run in 'strict' requirements mode which tests the lower bounds of the requirements repo somehow, since with things like kombu=2.5.0 this will always pull in the newest and