update pallets projects minimum versions

This commit is contained in:
David Lord 2021-05-11 14:28:49 -07:00
parent f8f0caf5c6
commit 3a5532b4ed
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
2 changed files with 4 additions and 13 deletions

View File

@ -4,9 +4,9 @@ from setuptools import setup
setup(
name="Flask",
install_requires=[
"Werkzeug>=2.0.0rc4",
"Jinja2>=3.0.0rc1",
"itsdangerous>=2.0.0rc2",
"Werkzeug>=2.0",
"Jinja2>=3.0",
"itsdangerous>=2.0",
"click>=7.1.2",
],
extras_require={

11
tox.ini
View File

@ -11,12 +11,6 @@ skip_missing_interpreters = true
deps =
-r requirements/tests.txt
https://github.com/pallets/werkzeug/archive/master.tar.gz
https://github.com/pallets/markupsafe/archive/master.tar.gz
https://github.com/pallets/jinja/archive/master.tar.gz
https://github.com/pallets/itsdangerous/archive/master.tar.gz
!click7: https://github.com/pallets/click/archive/master.tar.gz
click7: click<8
examples/tutorial[test]
@ -33,8 +27,5 @@ deps = -r requirements/typing.txt
commands = mypy
[testenv:docs]
deps =
-r requirements/docs.txt
https://github.com/pallets/werkzeug/archive/master.tar.gz
deps = -r requirements/docs.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html