We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I couldn't install package on ubuntu 22 with python3.10. Can't tell cpython version Error was legacy-install-failure
tried git+https://github.com/pytries/DAWG.git and git+https://github.com/pytries/DAWG.git@actions
The text was updated successfully, but these errors were encountered:
I got it compiling and working with the following steps:
diff --git a/src/dawg.pyx b/src/dawg.pyx index 6dba921..66b9c58 100644 --- a/src/dawg.pyx +++ b/src/dawg.pyx @@ -569,7 +569,7 @@ cdef class BytesDAWG(CompletionDAWG): self._completer.length(), b64_decoder_storage ) - results.push_back(string(b64_decoder_storage, key_len)) + results.push_back(str(b64_decoder_storage, key_len)) return results
update_cpp.sh
sudo python3 setup.py install
Sorry, something went wrong.
fix in this PR #50
No branches or pull requests
I couldn't install package on ubuntu 22 with python3.10. Can't tell cpython version
Error was legacy-install-failure
tried git+https://github.com/pytries/DAWG.git and git+https://github.com/pytries/DAWG.git@actions
The text was updated successfully, but these errors were encountered: