-
Notifications
You must be signed in to change notification settings - Fork 127
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
Bug: "Import Error _DEFAULT_CA_CERTS" With tornado 5.0 #203
Comments
oooops I just found out pynsq-0.8.3 fixed that issue. ORZ.. waiting for this release! |
Yup, still, this is a good additional note for #185 |
Encountered this issue + 1, where did you find out pynsq-0.8.3 fixed it? |
the change in pynsq-0.8.3 is to require tornado < 5.0 |
@ploxiln yeah I checked the changes hahaha... |
same issue |
What is the status on this issue? I just ran "pip3 install pynsq" and trying to import it I get this error. Seems odd that this issue would still be open 6 months later being as it renders the module completely unusable... |
This module is usable if you use tornado < 5.0 |
The setup.py checks for (even though the long-awaited tornado-5.0 compatibility, which I said I would work on, has not been done yet ...) |
Given that actual compatibility is a ways off, yea, should probably issue a point release for the patch. |
Why closed this while not fixed? |
the latest release 0.8.3 prevents you from using pynsq with tornado >= 5.0 (so you can use at latest tornado 4.5.3) so you won't run into this particular error compatibility with tornado-5.x is still a needed feature/bugfix and not forgotten |
Alright, I see. How about just using None for default ca_certs, or import certifi and using certifi.where |
what's the time of next release of pynsq, i want to use pynsq with tornado 5.1 |
Hi there! Or is there any other way to use pynsq, when i already have asyncio in place. I am currently struggling with combining the two, because i already have a blocking asyncio-loop. Edit: |
please continue discussion in #185 |
Since tornado updated to 5.0, the latest version of pynsq has conflict with this new tornado:
This bug causes huge consequences on my application and plz fix this ASAP.
Currently my way to fix this bug is to put these lines in requirements.txt to force tornado use 4.5.3:
The text was updated successfully, but these errors were encountered: