-
Notifications
You must be signed in to change notification settings - Fork 403
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
Hotfix for pyzmq installation #2272
Hotfix for pyzmq installation #2272
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we fix it in Docker as well?
RUN pip install -v --no-binary pyzmq --pre pyzmq |
Yes |
Done with dont use prereleases (docker) |
Reference: this should also fix #2268 |
pyzmq version 26.0.0a3 fixes the build error, so installations with the pre-release are possible again. Will still merge this to make the installation more stable. |
0bc2e05
to
9178d78
Compare
Pull Request Test Coverage Report for Build 7965715746Details
💛 - Coveralls |
fixes #2271
pyzmq installation fails due to the latest prerelease.
Fix: removed the
--pre
argument to use the latest release, which is known to work.