python-zulip-api: Drop python3.5 support.

Fixes Part of #655
This commit is contained in:
LoopThrough-i-j 2021-02-26 19:09:03 +05:30 committed by Tim Abbott
parent 6ac2165bf1
commit 3887ad102e
5 changed files with 8 additions and 8 deletions

View file

@ -20,7 +20,7 @@ from typing import Any, Callable, Dict, Iterable, IO, List, Mapping, Optional, T
__version__ = "0.7.1"
# Ensure the Python version is supported
assert sys.version_info >= (3, 5)
assert sys.version_info >= (3, 6)
logger = logging.getLogger(__name__)