Skip to content

Commit

Permalink
python 3.7, 3.8 대응, 3.4 제거, 빌링키 추가 조회 기능 넣어서 버전업
Browse files Browse the repository at this point in the history
  • Loading branch information
perhapsspy committed Dec 4, 2019
1 parent 2babf1e commit d6a2421
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
15 changes: 10 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -265,12 +265,13 @@ macOS 기준 pyenv 설치 권장

# pyenv 준비
brew install pyenv
pyenv install -s 2.7.13
pyenv install -s 3.4.7
pyenv install -s 3.5.4
pyenv install -s 3.6.2
pyenv install -s 2.7.17
pyenv install -s 3.5.8
pyenv install -s 3.6.9
pyenv install -s 3.7.5
pyenv install -s 3.8.0
pyenv install -s pypy-5.7.1
pyenv local 2.7.13 3.4.7 3.5.4 3.6.2 pypy-5.7.1
pyenv local 2.7.17 3.5.8 3.6.9 3.7.5 3.8.0 pypy-5.7.1
pip install pytest pytest-cov collective.checkdocs Pygments tox-pyenv

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

할 일
======
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def readme():

setup(
name='iamport-rest-client',
version='0.7.0',
version='0.8.0',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
Expand All @@ -33,9 +33,10 @@ def readme():
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down
3 changes: 1 addition & 2 deletions tests/test_pay_again.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,4 @@ def test_pay_again(iamport):
try:
iamport.pay_again(**payload_full)
except iamport.ResponseError as e:
assert e.code == 1
assert u'등록되지 않은 구매자입니다.' in e.message
assert e.code == -1
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36, pypy
envlist = py27, py35, py36, py37, py38, pypy

[testenv]
passenv = CI TRAVIS TRAVIS_*
Expand Down

0 comments on commit d6a2421

Please sign in to comment.