requirements: Remove unnecessary install dependency upon six & typing.
The latest release was fully python 3.5+, making these dependencies redundant.
This commit is contained in:
parent
a9268a1947
commit
f2c8295fcb
|
@ -9,9 +9,6 @@ exclude_lines =
|
|||
raise NotImplementedError()
|
||||
# Don't require coverage for test suite AssertionError -- they're usually for clarity
|
||||
raise AssertionError
|
||||
# Don't require coverage for Python 2/3 variations; it's impossible to cover on both
|
||||
if six.PY3:
|
||||
if six.PY2:
|
||||
# Don't require coverage for __unicode__ statements just used for printing
|
||||
def __unicode__[(]self[)]:
|
||||
|
||||
|
|
|
@ -5,8 +5,6 @@ following dependencies:
|
|||
|
||||
* **Python (version >= 3.5)**
|
||||
* requests (version >= 0.12.1)
|
||||
* six
|
||||
* typing (version >= 3.5.2.2)
|
||||
|
||||
**Note**: If you'd like to use the Zulip bindings with Python 2, we
|
||||
recommend installing version 0.6.4.
|
||||
|
|
|
@ -61,8 +61,6 @@ package_info = dict(
|
|||
|
||||
setuptools_info = dict(
|
||||
install_requires=['requests[security]>=0.12.1',
|
||||
'six',
|
||||
'typing>=3.5.2.2;python_version<"3.5"',
|
||||
'matrix_client',
|
||||
'distro',
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue