Simon Biewald
Simon Biewald
Some CI services could be used. On Travis OS X containers can be used (but I have no experience with them) and AppVeyor (See https://packaging.python.org/guides/supporting-windows-using-appveyor/) makes it possible to build...
@jonashaag The manylinux wheel creation is done with Docker.
As Continuous Integration could also run a test suite, would you mind if I convert some of the present tests into some independently running automated tests? So before building wheels,...
Before doing so, I would like to finish #122/#123 first.
As I said, I will try to work on it.
WPA2 itself (I mean the defined WPA2 standart) is not broken with KRACK - the implementations are. While this is because of the RFC being to broad at certain point,...
You may be able to decode the files with `pickle.load` from the standard library. `flask-session` users `werkzeug.contrib.cache` for the implementation of filesystem caching, which is based on `pickle`. Example: ```python3...
> It think that means that I was wrong about it being SSE. Are you aware of whether there are compile flags that will exclude this instruction? According to [this...
Sure! I think #11 should be solved first, to not have accidentally conflicting code. Anyway, my proposed change will be like: - Add `itsdangerous~=2.0.0` as installation requirement. - Add *key*...
May I suggest to use `__MSC_VER >= ... && ( defined(_M_X64) || defined(__x86_64__) )` instead? This includes macro defined by GCC/MinGW.