mirror of https://github.com/pallets/flask.git
update pallets projects minimum versions
This commit is contained in:
parent
f8f0caf5c6
commit
3a5532b4ed
6
setup.py
6
setup.py
|
@ -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
11
tox.ini
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue