Skip to content

Commit

Permalink
Bump version to 3.5.5, fix requirements for pip package
Browse files Browse the repository at this point in the history
  • Loading branch information
Hao Zhou committed Dec 25, 2019
1 parent 3ed6851 commit e718dfe
Show file tree
Hide file tree
Showing 3 changed files with 2 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.4'
__version__ = '3.5.5'

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

2 changes: 1 addition & 1 deletion 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', 'requests-toolbelt']
requires = [pkg.strip() for pkg in open('requirements.txt', 'r').readlines()]

version = ''
with open('pixivpy3/__init__.py', 'r') as fd:
Expand Down

0 comments on commit e718dfe

Please sign in to comment.