Skip to content

Commit 02d61b4

Browse files
authored
Merge pull request #51 from jha929/feature/remove-python27
파이썬 2.7 지원 중단
2 parents 03479dd + 6214979 commit 02d61b4

17 files changed

+1
-25
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ jobs:
44
includes:
55
- python: pypy
66
env: RUN_MYPY=false
7-
- python: 2.7
8-
env: RUN_MYPY=false
97
- python: 3.4
108
env: RUN_MYPY=false
119
- python: 3.5

iamport/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
from .client import Iamport
32

43
__all__ = ['Iamport']

iamport/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
import json
42

53
import requests

setup.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
import io
42
import os
53

@@ -32,10 +30,6 @@ def wrapper():
3230
license='MIT',
3331
zip_safe=False,
3432
data_files=[
35-
(
36-
'shared/typehints/python2.7',
37-
['iamport/client.pyi'],
38-
),
3933
(
4034
'shared/typehints/python3.6',
4135
['iamport/client.pyi'],
@@ -60,7 +54,6 @@ def wrapper():
6054
'License :: OSI Approved :: MIT License',
6155
'Operating System :: OS Independent',
6256
'Programming Language :: Python',
63-
'Programming Language :: Python :: 2.7',
6457
'Programming Language :: Python :: 3.6',
6558
'Programming Language :: Python :: 3.7',
6659
'Programming Language :: Python :: 3.8',

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# -*- coding: utf-8 -*-
21
from pytest import fixture
32

43
from iamport import Iamport
54

5+
66
DEFAULT_TEST_IMP_KEY = 'imp_apikey'
77
DEFAULT_TEST_IMP_SECRET = (
88
'ekKoeW8RyKuT0zgaZsUtXXTLQ4AhPFW3ZGseDA6b'

tests/test_cancel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
import pytest
32

43

tests/test_certification.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
import pytest
32

43

tests/test_customer_create.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
import pytest
32

43

tests/test_customer_get.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
import pytest
32

43

tests/test_find.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
import pytest
32

43

0 commit comments

Comments
 (0)