forked from orbit-oss/flask
Merge branch '1.1.x' into 2.0.x
This commit is contained in:
commit
5bd959fbec
2 changed files with 16 additions and 5 deletions
11
CHANGES.rst
11
CHANGES.rst
|
|
@ -107,6 +107,17 @@ Released 2021-05-11
|
||||||
- Add type hinting. :pr:`3973`.
|
- Add type hinting. :pr:`3973`.
|
||||||
|
|
||||||
|
|
||||||
|
Version 1.1.3
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Released 2021-05-13
|
||||||
|
|
||||||
|
- Set maximum versions of Werkzeug, Jinja, Click, and ItsDangerous.
|
||||||
|
:issue:`4043`
|
||||||
|
- Re-add support for passing a ``pathlib.Path`` for ``static_folder``.
|
||||||
|
:pr:`3579`
|
||||||
|
|
||||||
|
|
||||||
Version 1.1.2
|
Version 1.1.2
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
|
|
||||||
10
setup.py
10
setup.py
|
|
@ -4,13 +4,13 @@ from setuptools import setup
|
||||||
setup(
|
setup(
|
||||||
name="Flask",
|
name="Flask",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Werkzeug>=2.0",
|
"Werkzeug >= 2.0",
|
||||||
"Jinja2>=3.0",
|
"Jinja2 >= 3.0",
|
||||||
"itsdangerous>=2.0",
|
"itsdangerous >= 2.0",
|
||||||
"click>=7.1.2",
|
"click >= 7.1.2",
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
"async": ["asgiref>=3.2"],
|
"async": ["asgiref >= 3.2"],
|
||||||
"dotenv": ["python-dotenv"],
|
"dotenv": ["python-dotenv"],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue