-
Notifications
You must be signed in to change notification settings - Fork 15.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Protobuf 2.6.0 pip dependency conflict #36
Comments
FYI this is causing problems for |
@craigcitro FYI I saw you were a maintainer of Do you know the reason for strange the REQUIRE = [
"python-dateutil>=1.4,<2",
"python-gflags>=1.4",
"pytz>=2010",
] It is causing some "upstream" problems in this library. |
yes -- this is an unfortunate issue around being able to test with our internal versions of does anyone happen to know how big the API difference is between version 1.4 and 2+ of |
Code docs list contact info for Gustavo Niemeyer. @niemeyer would you be able to weigh in on the API difference between UPDATE: I confirmed that Gustavo has handed off maintenance. Code is hosted on LaunchPad. Other member and PyPI owner is Tomi Pievilaeinen who has contact info on ActiveState. |
OK, looking at our code using dateutil, i think we can just drop it. let me at least ping the other thread, see if anyone has time to look at this. |
Will it build? If it BUILDs, everyone is happy 👍 |
i think i'll be able to get a fix out soon, stay tuned. |
w00t. Thanks for pushing through this. |
Yay, thanks! 👍 |
I had to downgrade my Brew installation of protoc to 2.5 because of this implicit dependency on an ancient version of python-dateutil. We're also using Boto, which requires a modern version of dateutil. Since the only reason that google-apputils is being used is to get |
... and we're fixed! i just pushed a new version of |
w00t! I assume you're referring to: https://pypi.python.org/pypi/google-apputils/0.4.1 How does the Ubuntu / debian source process work? |
yep, just pushed the new release, and now this package can install with no trouble. i have no idea who/what controls the deb creation. |
Thanks very much, Craig! |
@craigcitro The Debian packaging for google-apputils-python is here: http://anonscm.debian.org/cgit/cloud/google-apputils-python.git. I've just updated it for 0.4.1 and uploaded it to the Debian archive. |
wooooo thanks @edmonds ! |
Thanks Craig! 😄 |
Decoder fix: skipped data at end of submessage.
Since google-apputils was added as a dependency on 2.6.0 we have dependency conflict on python-dateutil, apparently google-apputils needs 'python-dateutil>=1.4,<2' but the latest public version is 2.2 which is needed and installed by other packages.
Current workaround is to downgrade python-dateutil to 1.5 but it'll probably break something sooner or later, any chance to loose a bit the requirements?
Thanks
The text was updated successfully, but these errors were encountered: