Skip to content

Commit d6a2421

Browse files
committed
python 3.7, 3.8 대응, 3.4 제거, 빌링키 추가 조회 기능 넣어서 버전업
1 parent 2babf1e commit d6a2421

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

README.rst

+10-5
Original file line numberDiff line numberDiff line change
@@ -265,12 +265,13 @@ macOS 기준 pyenv 설치 권장
265265

266266
# pyenv 준비
267267
brew install pyenv
268-
pyenv install -s 2.7.13
269-
pyenv install -s 3.4.7
270-
pyenv install -s 3.5.4
271-
pyenv install -s 3.6.2
268+
pyenv install -s 2.7.17
269+
pyenv install -s 3.5.8
270+
pyenv install -s 3.6.9
271+
pyenv install -s 3.7.5
272+
pyenv install -s 3.8.0
272273
pyenv install -s pypy-5.7.1
273-
pyenv local 2.7.13 3.4.7 3.5.4 3.6.2 pypy-5.7.1
274+
pyenv local 2.7.17 3.5.8 3.6.9 3.7.5 3.8.0 pypy-5.7.1
274275
pip install pytest pytest-cov collective.checkdocs Pygments tox-pyenv
275276

276277
# tox
@@ -293,6 +294,10 @@ macOS 기준 pyenv 설치 권장
293294
- `forybm <https://github.com/forybm>`_ `#18 <https://github.com/iamport/iamport-rest-client-python/pull/18>`_
294295
- `Leop0ld <https://github.com/Leop0ld>`_ `#21 <https://github.com/iamport/iamport-rest-client-python/pull/21>`_
295296
- http 200 응답 개선:`Noh Seho <https://github.com/NohSeho>`_ `#24 <https://github.com/iamport/iamport-rest-client-python/pull/24>`_
297+
- 빌링키 조회 함수 추가
298+
- `james-song <https://github.com/james-song>`_ `#30 <https://github.com/iamport/iamport-rest-client-python/pull/30>`_
299+
- `pcompassion <https://github.com/pcompassion>`_ `#20 <https://github.com/iamport/iamport-rest-client-python/pull/20>`_
300+
- `UrangUrang <https://github.com/UrangUrang>`_ `#14 <https://github.com/iamport/iamport-rest-client-python/pull/14>`_
296301

297302
할 일
298303
======

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def readme():
1111

1212
setup(
1313
name='iamport-rest-client',
14-
version='0.7.0',
14+
version='0.8.0',
1515
packages=find_packages(),
1616
include_package_data=True,
1717
install_requires=install_requires,
@@ -33,9 +33,10 @@ def readme():
3333
'Programming Language :: Python :: 2',
3434
'Programming Language :: Python :: 2.7',
3535
'Programming Language :: Python :: 3',
36-
'Programming Language :: Python :: 3.4',
3736
'Programming Language :: Python :: 3.5',
3837
'Programming Language :: Python :: 3.6',
38+
'Programming Language :: Python :: 3.7',
39+
'Programming Language :: Python :: 3.8',
3940
'Programming Language :: Python :: Implementation :: CPython',
4041
'Programming Language :: Python :: Implementation :: PyPy',
4142
'Topic :: Software Development :: Libraries :: Python Modules',

tests/test_pay_again.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@ def test_pay_again(iamport):
2222
try:
2323
iamport.pay_again(**payload_full)
2424
except iamport.ResponseError as e:
25-
assert e.code == 1
26-
assert u'등록되지 않은 구매자입니다.' in e.message
25+
assert e.code == -1

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, py35, py36, pypy
2+
envlist = py27, py35, py36, py37, py38, pypy
33

44
[testenv]
55
passenv = CI TRAVIS TRAVIS_*

0 commit comments

Comments
 (0)