gsutil-4.20-use-friendy-version-checks.patch 639 B

1234567891011121314151617181920212223242526
  1. --- a/setup.py
  2. +++ b/setup.py
  3. @@ -35,10 +35,10 @@
  4. """
  5. requires = [
  6. - 'boto==2.39.0',
  7. + 'boto>=2.39.0',
  8. 'crcmod>=1.7',
  9. 'gcs-oauth2-boto-plugin>=1.14',
  10. - 'google-apitools==0.5.3',
  11. + 'google-apitools>=0.5.3',
  12. 'httplib2>=0.8',
  13. - 'oauth2client==2.2.0',
  14. + 'oauth2client>=2.2.0',
  15. 'pyOpenSSL>=0.13',
  16. @@ -48,7 +48,6 @@
  17. 'six>=1.9.0',
  18. # Not using 1.02 because of:
  19. # https://code.google.com/p/socksipy-branch/issues/detail?id=3
  20. - 'SocksiPy-branch==1.01',
  21. + 'SocksiPy-branch>=1.01',
  22. # TODO: Sync submodule with tag referenced here once #339 is fixed in mock.
  23. - 'mock==2.0.0',
  24. ]