Skip to content

Commit

Permalink
Unpin google-api-python-client version. fixes #49
Browse files Browse the repository at this point in the history
  • Loading branch information
maybelinot committed Nov 15, 2019
1 parent f4cef38 commit f14da35
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion df2gspread/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
# @Last Modified time: 2016-03-08 12:36:30


version_info = ('1', '0', '4')
version_info = ('1', '0', '5')
__version__ = '.'.join(version_info[0:3]) # + '-' + version_info[3]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
__irequires__ = [
# CORE DEPENDENCIES
'argparse>=1.3.0',
'google-api-python-client==1.6.7',
'google-api-python-client>=1.6.7',
'gspread>=2.1.1',
'oauth2client>=1.5.0,<5.0.0dev',
'pandas'
Expand Down
2 changes: 1 addition & 1 deletion tests/test_df2gspread.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_version_check():
# THIS NEEDS TO BE UPDATED EVERY TIME THE MAIN PACKAGE
# VERSION IS UPDATED!!!
######################################################
_v = '1.0.4'
_v = '1.0.5'

if _version.__version__ != _v:
raise SystemError('SYNC VERSION in tests/test_df2gspread.py')
Expand Down

0 comments on commit f14da35

Please sign in to comment.