Open chrislawlor opened 2 years ago
Need to spec cryptography<3.4, newer source requires a Rust compiler which is not available on Travis.
cryptography<3.4
Adding this stanza to tox.ini fixes the issue for a generated project:
tox.ini
[testenv:py36] deps = cryptography<3.4 -r{toxinidir}/requirements_dev.txt
Need to spec
cryptography<3.4
, newer source requires a Rust compiler which is not available on Travis.Adding this stanza to
tox.ini
fixes the issue for a generated project: