Skip to content

Commit

Permalink
installation: more version limits
Browse files Browse the repository at this point in the history
* Introduces more upper boundary limits for dependencies to make sure all the
  client components are installable from PyPI in the future.
  (addresses reanahub/reana#80)

Signed-off-by: Tibor Simko <tibor.simko@cern.ch>
  • Loading branch information
tiborsimko committed Sep 7, 2018
1 parent 80af57a commit b46c73e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion reana_client/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.3.0"
__version__ = "0.3.1.dev20180905"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@
]

install_requires = [
'bravado>=9.0.6',
'click>=6.7',
'bravado>=9.0.6,<10.2',
'click>=6.7,<6.8',
'cwltool==1.0.20180326152342',
'pyOpenSSL==17.3.0', # FIXME remove once yadage-schemas solves deps.
'reana-commons>=0.3.1,<0.4',
'rfc3987==1.3.7', # FIXME remove once yadage-schemas solves deps.
'strict-rfc3339==0.7', # FIXME remove once yadage-schemas solves deps.
'tablib>=0.12.1',
'tablib>=0.12.1,<0.13',
'webcolors==1.7', # FIXME remove once yadage-schemas solves deps.
'yadage-schemas==0.7.16',
]
Expand Down

0 comments on commit b46c73e

Please sign in to comment.