diff --git a/df2gspread/_version.py b/df2gspread/_version.py index 0e0949f..70ab937 100644 --- a/df2gspread/_version.py +++ b/df2gspread/_version.py @@ -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] diff --git a/setup.py b/setup.py index 04d3dcd..755272e 100755 --- a/setup.py +++ b/setup.py @@ -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' diff --git a/tests/test_df2gspread.py b/tests/test_df2gspread.py index aeec05f..5efc546 100644 --- a/tests/test_df2gspread.py +++ b/tests/test_df2gspread.py @@ -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')