File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# single source of truth for package version,
4
4
# see https://packaging.python.org/en/latest/single_source_version/
5
- __version__ = "1.9.0 "
5
+ __version__ = "1.9.1 "
6
6
7
7
# app name to send as part of SDK requests
8
8
app_name = "Globus CLI v{}" .format (__version__ )
Original file line number Diff line number Diff line change 1
1
import os
2
2
import sys
3
- from setuptools import setup , find_packages
4
3
4
+ from setuptools import find_packages , setup
5
5
6
6
if sys .version_info < (2 , 7 ):
7
7
raise NotImplementedError ("""\n
21
21
version = version ,
22
22
packages = find_packages (exclude = ['tests' , 'tests.*' ]),
23
23
install_requires = [
24
- 'globus-sdk==1.6 .1' ,
24
+ 'globus-sdk==1.7 .1' ,
25
25
'click>=6.6,<7.0' ,
26
26
'jmespath==0.9.2' ,
27
27
'configobj>=5.0.6,<6.0.0' ,
33
33
#
34
34
# as new versions of cryptography are released, we may need to update
35
35
# this requirement
36
- 'cryptography>=1.8.1,<2.5 .0'
36
+ 'cryptography>=1.8.1,<2.6 .0'
37
37
],
38
38
39
39
extras_require = {
You can’t perform that action at this time.
0 commit comments