-
Notifications
You must be signed in to change notification settings - Fork 639
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from minrk/bundle
bundle libzmq as an Extension if it isn't found The code to do this is largely from pyzmq-static, but with some important differences: * libzmq as an extension is *optional* * libzmq/uuid sources are downloaded as-needed * platform.hpp is attempted by ./configure before falling back on shipped versions (also from pyzmq-static) This should make pyzmq pip-installable without libzmq present, and remove the need for the pyzmq-static project to exist separately from pyzmq itself. closes #128
- Loading branch information
Showing
15 changed files
with
1,532 additions
and
356 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"""utilities for building pyzmq. | ||
Largely adapted from h5py | ||
""" | ||
|
||
from .msg import * | ||
from .config import * | ||
from .detect import * | ||
from .bundle import * |
Oops, something went wrong.