salt/requirements/zeromq.txt
Pedro Algarvio 75693e5fe3
Use pycryptodomex on windows and PyCrypto on the rest
Because PyCrypto on windows needs to be patched.
2019-05-08 13:16:29 +01:00

8 lines
294 B
Plaintext

-r base.txt
# PyCrypto has issues on Windows, while pycryptodomex does not
pycrypto>=2.6.1; sys.platform != 'win32'
pycryptodomex; sys.platform == 'win32'
pyzmq>=2.2.0,<17.1.0; python_version == '3.4' # pyzmq 17.1.0 stopped building wheels for python3.4
pyzmq>=2.2.0; python_version != '3.4'