Skip to content

Commit 90cc583

Browse files
authored
Official required version is Python 3.6+ (#341)
* Official required version is Python 3.6+ * `from __future__ import unicode_literals` is not required for python3
1 parent 28fd289 commit 90cc583

35 files changed

+3
-39
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Japanese: https://developers.line.biz/ja/docs/messaging-api/overview/
2222
Requirements
2323
------------
2424

25-
- Python >= 2.7 or >= 3.4
25+
- Python >= 3.6
2626

2727
Installation
2828
------------

examples/flask-echo/app.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
1414

15-
from __future__ import unicode_literals
1615

1716
import os
1817
import sys

examples/flask-kitchensink/app.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
1414

15-
from __future__ import unicode_literals
1615

1716
import datetime
1817
import errno

linebot/__about__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""Meta data of line-bot-sdk."""
1616

17-
from __future__ import unicode_literals
1817

1918
__version__ = '1.20.0'
2019
__author__ = 'LINE Corporation'

linebot/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""linebot package."""
1616

17-
from __future__ import unicode_literals
1817

1918
from .__about__ import ( # noqa
2019
__version__

linebot/api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""linebot.api module."""
1616

17-
from __future__ import unicode_literals
1817

1918
import json
2019

linebot/exceptions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""linebot.exceptions module."""
1616

17-
from __future__ import unicode_literals
1817

1918
from abc import ABCMeta
2019

linebot/http_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""linebot.http_client module."""
1616

17-
from __future__ import unicode_literals
1817

1918
from abc import ABCMeta, abstractmethod, abstractproperty
2019

linebot/models/actions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""linebot.models.actions module."""
1616

17-
from __future__ import unicode_literals
1817

1918
from abc import ABCMeta
2019

linebot/models/background.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""linebot.models.emojis module."""
1616

17-
from __future__ import unicode_literals
1817

1918
from abc import ABCMeta
2019

0 commit comments

Comments
 (0)