Open shahinism opened 1 year ago
Duplicate of #117.
Hello @shahinism @michaeljoseph
I've forked the code, modernized it (replaced hyper with HTTPX, bumped all dependencies, updated to Python 3.9 as the minimal version, and fixed all the tests to behave with latest KSQL DB behavior. I've also fixed this issue along the way, I believe.
https://github.com/sheinbergon/ksql-python-ng
I'll be making a PYPI release soon enough. In the meanwhile, you can test it by running
pipx install git+https://github.com/sheinbergon/ksql-python-ng.git --include-deps
or
pip install git+https://github.com/sheinbergon/ksql-python-ng.git
Description: The
ksql-python
package encounters compatibility issues with pep517 during installation using tools where thispep
is considered the default, resulting in the following error:As a result of this issue, package managers compatible with pep517, such as
poetry
andpdm
, are unable to install theksql-python
package, displaying the aforementioned error message.Upon further investigation, I have identified the root cause of the problem. The setup.py file includes an unused import statement:
Will open a PR to address it.