-
Notifications
You must be signed in to change notification settings - Fork 151
python 3.10 crashes #336
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
Comments
Looks like this was fixed with ssh2-python here: ParallelSSH/ssh2-python#156 but somehow it hasn't gotten into the parallel-ssh release. |
Somehow in reading docs and using pypi.org I ended up installing 1.13.0 and the latest release is 2.8.0 which doesn't have the problem. Not sure how I got in that state. Sorry for the noise. |
I got confused by the https://parallel-ssh.readthedocs.io/en/1.13.0/ link which is the only readthedocs link I found, so I thought 1.13.0 was the latest version. I can't seem to find a 2.8.0 version of the docs. |
I'll remove the pinned old version of the documentation to avoid confusion. Thanks. |
For general questions please use the mail group.
Describe the bug
A clear and concise description of what the bug is.
Using this python 3.10 crashes with:
ImportError: /lib/python3.10/site-packages/pssh/native/_ssh2.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Import should work
Actual behaviour
Crash!
Additional information
I get parallel-ssh 1.13.0 installed. It looks to be a common problem with the version of cython that was used to generate files and python 3.10. It still crashes if I install cython 0.29.27 into the venv and then run:
pip install --no-binary "parallel-ssh,ssh2-python" parallel-ssh==1.13.0
See
cython/cython#3876
for more discussion on the issue.
The text was updated successfully, but these errors were encountered: