Skip to content

Commit

Permalink
Merge pull request #446 from jaswilli/update-deps
Browse files Browse the repository at this point in the history
Update dependencies and release 1.9.1
  • Loading branch information
sirosen authored Feb 26, 2019
2 parents 341b394 + 19f8845 commit 0c0c5fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion globus_cli/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "1.9.0"
__version__ = "1.9.1"

# app name to send as part of SDK requests
app_name = "Globus CLI v{}".format(__version__)
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import sys
from setuptools import setup, find_packages

from setuptools import find_packages, setup

if sys.version_info < (2, 7):
raise NotImplementedError("""\n
Expand All @@ -21,7 +21,7 @@
version=version,
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=[
'globus-sdk==1.6.1',
'globus-sdk==1.7.1',
'click>=6.6,<7.0',
'jmespath==0.9.2',
'configobj>=5.0.6,<6.0.0',
Expand All @@ -33,7 +33,7 @@
#
# as new versions of cryptography are released, we may need to update
# this requirement
'cryptography>=1.8.1,<2.5.0'
'cryptography>=1.8.1,<2.6.0'
],

extras_require={
Expand Down

0 comments on commit 0c0c5fb

Please sign in to comment.