Daniel Suo
Daniel Suo
Check out the Apple documentation [here](https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/URLLoadingSystem/Articles/UsingNSURLSession.html). Modifying the ```dataTaskWithRequest``` in ```RNFetchBlobNetwork.m``` to ```uploadTaskWithStreamedRequest``` or ```downloadTaskWithRequest``` will resolve the issue. I don't have time to make a full PR, but you...
There are a lot of reasons why ```URLSessionDidFinishEventsForBackgroundURLSession``` might not get called. [This](https://stackoverflow.com/questions/32676352/urlsessiondidfinisheventsforbackgroundurlsession-not-calling-objective-c) looks like a reasonably thorough post on the topic. Hope that helps!
I actually don't call ```URLSessionDidFinishEventsForBackgroundURLSession``` and in my code I only changed one line (essentially turned the data task into an upload task). As I mentioned earlier in this thread,...
So we have everything in one place, the only change required (version checking aside) is replacing the contents of ```brainiak/__init__.py``` with ```python __path__ = __import__('pkgutil').extend_path(__path__, __name__) ```
Some issues with named packages and Conda as well. https://github.com/conda-forge/staged-recipes/wiki/Namespace-packages
This looks like a popular [option](https://github.com/joerick/cibuildwheel)
Ignore earlier commit. I'll check it out tomorrow during the long meeting :)
Building wheels is OK, but installing in virtual environments with compiled code not so much. ```cibuildwheel``` is doing something really simple: for each OS / version of python, install dependencies,...
A longer discussion of the issue [here](https://stackoverflow.com/questions/23916186/how-to-include-external-library-with-python-wheel-package)
FYI: work in progress in pull request #314