cjolowicz / cookiecutter-hypermodern-python

Hypermodern Python Cookiecutter
http://cookiecutter-hypermodern-python.readthedocs.io/
MIT License
1.79k stars 232 forks source link

Safety Errors about Tornado < 6.3.2 #1349

Open natescherer opened 1 year ago

natescherer commented 1 year ago

Just a heads up that by default, safety errors out because of vulnerabilities in tornado (required by livereload, which is required by sphinx-autobuild). https://pyup.io/v/59071/f17/ indicates tornado 6.3.2 is required to fix the vuln, but >=6.3 requires python 3.8. Updating the below in the pyproject.toml will fix:

[tool.poetry.dependencies]
python = "^3.8"