etiennedub / pyk4a

Python 3 wrapper for Azure-Kinect-Sensor-SDK
MIT License
287 stars 81 forks source link

Fixed python build wheel requirements error: Expected end or semicolon (after name and no valid version specifier) #193

Closed EgleM2022 closed 1 year ago

EgleM2022 commented 1 year ago

I get the following error when building with these versions:

pkg_resources.extern.packaging._tokenizer.ParserSyntaxError: Expected end or semicolon (after name and no valid version specifier) python_version >= "3.4"

image

The problem seems to be a left-over "python_version" specifier from this commit.

mtanida commented 1 year ago

I'm running into this too! Would appreciate the fix! THANK YOU!

benpocklingtonhes commented 1 year ago

Ah, this is one of the issues I was having yesterday, I temporarily fixed it by installing pyk4a-bundle instead

lpasselin commented 1 year ago

Thanks for the PR, I will release a new version on pypi in the next hours.

lpasselin commented 1 year ago

Fixed by https://github.com/etiennedub/pyk4a/pull/196 which keeps the >= 3.4 version requirement.

Thanks for the PR!