-
Notifications
You must be signed in to change notification settings - Fork 166
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
bcrypt with pypy error #49
Comments
Unfortunate PyPy3 does not have a release which supports cffi 1.0, for now your best bet would be to pin to a lower version of bcrypt. |
Probably we should do like what was done on cryptography and error during install? |
That seems like it would be a better UX, yeah. On Mon, Aug 31, 2015 at 4:43 PM, Donald Stufft notifications@github.com
"I disapprove of what you say, but I will defend to the death your right to |
A small note on the README could have saved me several hours trying to figure what went wrong. Currently it just says "This library... will run on Python 2.6+, 3.2+, and PyPy." |
Good point. Let's file an issue to update the README (and setup.py) On Mon, Aug 31, 2015 at 4:46 PM, avnr notifications@github.com wrote:
"I disapprove of what you say, but I will defend to the death your right to |
Sorry about the crappy UX! On Mon, Aug 31, 2015 at 4:47 PM, Alex Gaynor alex.gaynor@gmail.com wrote:
"I disapprove of what you say, but I will defend to the death your right to |
No sweat, keep up the good work, its a great package. |
Just a heads up but this is still not resolved; namely on Ubuntu 14.04 LTS. |
Hi All,
|
Jython can't run C extensions built against cffi so bcrypt can't work, sorry. |
Ok, thanks |
Latest stable pypy version, bcrypt installed via pip, running on Win7 64bit:
I've compared the pypy
site-packages/bcrypt
directory with the corresponding pythonsite-packages/bcrypt
, and the python directory has a file_bcrypt.pyd
which is not present under pypy.Any idea?
Thanks!
The text was updated successfully, but these errors were encountered: