-
Notifications
You must be signed in to change notification settings - Fork 197
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
changed to setuptools and replaced cStringIO #9
base: master
Are you sure you want to change the base?
Conversation
Great, thanks! I'll check it out. Would it still work on 2.7? |
As its stands right no, it would not. For instance .iteritems() changed to .items() in python3. Some other minor things right now that would not work in python2.7 but those are the major things I think. |
Ok the tests passes now on python 2 as well, so I think it should be compatible with both now. Take a look and let me know what you think. :) |
Nice! I'll give it a try! |
@dimatura have you had time testing it out on python 2 ? :) |
Nice @klintan, thanks.(Actually I did exactly the same thing on my machine :~)) |
@dimatura any chance for a merge? thanks |
Please, please please merge this! |
It would be great if this could be merged! |
👀 |
I chatted with @dimatura a bit. It sounds like he is willing to keep this project moving but not necessarily to maintain it himself. There are some viable forks out there. The @DanielPollithy fork brings in the @klintan changes plus some additional clean-up. Some questions for everyone:
For my part, I'm using the @klintan fork. That works but the @DanielPollithy fork looks like an improvement. I can volunteer as a maintainer if no one else wants it, though we are better off with two maintainers. Ideally we would get a couple people with access keys to push a release to pypi. |
Hi @clydecbrown ! In order to get a better overview for the discussion, I will try to summarize what my fork contains:
|
Seems like we should go with the @DanielPollithy fork since he is putting in the most effort, and make that one the official fork for release. @dimatura what do you think–willing to hand over the pypi token? |
Fix import statements for python 3
Fix ValueError: field '__0000' occurs more than once
Update pypcd.py
FIx DATA binary_compressed parsing error
Update pypcd.py
FIx when processing binary_compressed format point cloud
Changes to adapt to Python 3. Changed to setuptools (as also seen in another open PR).
Needed to make some changes to get all the tests to pass, but now all passes. Will add some additional tests for pdutil but will keep them in a separate PR.