pymetrics / cookiecutter-python-library

Cookiecutter template for a Python package.
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Python 3.6 builds fail #4

Open chrislawlor opened 2 years ago

chrislawlor commented 2 years ago

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:

[testenv:py36]
deps =
    cryptography<3.4
    -r{toxinidir}/requirements_dev.txt