Skip to content

Commit

Permalink
Bump version to 3.5.4, add requests-toolbelt to requires
Browse files Browse the repository at this point in the history
  • Loading branch information
Hao Zhou committed Nov 10, 2019
1 parent d71241c commit 2e7b0b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pixivpy3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Pixiv API library
"""
__version__ = '3.5.3'
__version__ = '3.5.4'

from .papi import PixivAPI
from .aapi import AppPixivAPI
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
requests>=2.0
requests_toolbelt>=0.9.1

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
except ImportError:
from distutils.core import setup

requires = ['requests']
requires = ['requests', 'requests-toolbelt']

version = ''
with open('pixivpy3/__init__.py', 'r') as fd:
Expand All @@ -18,7 +18,7 @@
packages=['pixivpy3'],
version=version,
description='Pixiv API for Python (with 6.x AppAPI supported)',
long_description="Pixiv API for Python (with 6.x AppAPI supported): https://github.com/upbit/pixivpy",
long_description=open('README.md', 'r').read(),
long_description_content_type="text/markdown",
author='upbit',
author_email='[email protected]',
Expand Down

0 comments on commit 2e7b0b3

Please sign in to comment.