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

@ -3,7 +3,7 @@
The [Zulip API](https://zulip.com/api) Python bindings require the
following dependencies:
* **Python (version >= 3.5)**
* **Python (version >= 3.6)**
* requests (version >= 0.12.1)
**Note**: If you'd like to use the Zulip bindings with Python 2, we

View file

@ -40,12 +40,12 @@ package_info = dict(
'License :: OSI Approved :: Apache Software License',
'Topic :: Communications :: Chat',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.5',
python_requires='>=3.6',
url='https://www.zulip.org/',
project_urls={
"Source": "https://github.com/zulip/python-zulip-api/",

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__)

View file

@ -38,12 +38,12 @@ package_info = dict(
'License :: OSI Approved :: Apache Software License',
'Topic :: Communications :: Chat',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.5',
python_requires='>=3.6',
url='https://www.zulip.org/',
project_urls={
"Source": "https://github.com/zulip/python-zulip-api/",

View file

@ -24,12 +24,12 @@ package_info = dict(
'License :: OSI Approved :: Apache Software License',
'Topic :: Communications :: Chat',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.5',
python_requires='>=3.6',
url='https://www.zulip.org/',
project_urls={
"Source": "https://github.com/zulip/python-zulip-api/",