Skip to content

Commit

Permalink
Accept dateutil and requests versions lower than 3
Browse files Browse the repository at this point in the history
There's no breaking change expected until 3 comes to both pkgs:  
- 'requests < 3.0.0', http://docs.python-requests.org/en/master/community/release-process/  
- 'python-dateutil < 3.0.0', https://github.com/dateutil/dateutil/milestones
  • Loading branch information
jfpla committed Jul 15, 2018
1 parent 967548f commit f6571a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -5,14 +5,14 @@
from distutils.core import setup

setup(name='blockcypher',
version='1.0.73',
version='1.0.74',
description='BlockCypher Python Library',
author='Michael Flaxman',
author_email='mflaxman+blockcypher@gmail.com',
url='https://github.com/blockcypher/blockcypher-python/',
install_requires=[
'requests==2.4.3',
'python-dateutil==2.2',
'requests<3.0.0',
'python-dateutil<3.0.0',
'bitcoin==1.1.39',
],
packages=['blockcypher'],
Expand Down

0 comments on commit f6571a3

Please sign in to comment.