Skip to content

Commit d83f081

Browse files
committed
Release 1.5
1 parent 140bdf2 commit d83f081

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGES.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
CHANGES
22
=======
33

4-
1.4.1 (2020-11-23)
4+
1.5 (2021-08-21)
5+
----------------
6+
7+
- Drop support for jinaj2 <3. Add support for 3+.
8+
- Don't require ``typing_extensions`` on Python 3.8+.
9+
10+
1.4.2 (2020-11-23)
511
------------------
612

713
- Add CHANGES.rst to MANIFEST.in and sdist #402

aiohttp_jinja2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from .helpers import GLOBAL_HELPERS
3030
from .typedefs import Filters
3131

32-
__version__ = "1.4.2"
32+
__version__ = "1.5"
3333

3434
__all__ = ("setup", "get_env", "render_template", "render_string", "template")
3535

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def read(f):
6262
url="https://github.com/aio-libs/aiohttp_jinja2/",
6363
license="Apache 2",
6464
packages=["aiohttp_jinja2"],
65-
python_requires=">=3.5.3",
65+
python_requires=">=3.6",
6666
install_requires=install_requires,
6767
include_package_data=True,
6868
)

0 commit comments

Comments
 (0)