-
Notifications
You must be signed in to change notification settings - Fork 48
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
Does not compile without curl #81
Comments
Which version of python and were you using |
Python 3.7.2, not using pip executed with python setup.py install. |
Should mention it's |
I'll look into whether this changed in python 3.7.2, since it works as intended in 3.7.1. For what it's worth, this seems like a nice argument for "use conda for package management". |
This seems to be an issue with Nix, because I just installed python 3.7.2 and ran
|
Well, I use Nix not conda and consider it far superior :). Package manager wars aside, that little test you did is interesting:
So you're right. The problem actually seems to be that I didn't have curl-config exposed (i.e., the build fails without curl). I've verified that pyBigWig compiles fine with curl, and fails with the "no decode" error without. |
It also does correctly detect there's no curl-config, just fails anyway directly aftewards:
|
Ah, that's the bug we're looking for then, thanks! |
I'm pushing out version 0.3.14, which should fix this. |
This should now be available in pypi. |
Confirmed resolved in 0.3.14, thanks! |
Building release 0.3.13 using python 3 fails due to a bug in setup.py:
Under python 3 there is no need to decode UTF-8 strings. Modifying the offending line to
foo = foo.strip().split()
resolves the problem.The text was updated successfully, but these errors were encountered: