Skip to content

Commit

Permalink
Merge 683c0bd into cae2d2f
Browse files Browse the repository at this point in the history
  • Loading branch information
Sinclert committed Jul 7, 2020
2 parents cae2d2f + 683c0bd commit 46a3ccc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -52,9 +52,9 @@ before_install:
- travis_retry pip uninstall click -y

install:
- pip install -r requirements-dev.txt
- travis_retry pip install -r .travis-${REQUIREMENTS}-requirements.txt
- travis_retry pip install -e .[$EXTRAS]
- pip install -I -r requirements-dev.txt
- travis_retry pip install -I -r .travis-${REQUIREMENTS}-requirements.txt
- travis_retry pip install -I -e .[$EXTRAS]

script:
- ./run-tests.sh
Expand Down
2 changes: 1 addition & 1 deletion reana_client/api/client.py
Expand Up @@ -35,7 +35,7 @@
def ping(access_token):
"""Health check REANA server."""
try:
response, http_response = current_rs_api_client.api.get_me(
response, http_response = current_rs_api_client.api.get_you(
access_token=access_token
).result()
if http_response.status_code == 200:
Expand Down
2 changes: 1 addition & 1 deletion reana_client/version.py
Expand Up @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.7.0.dev20200218"
__version__ = "0.7.0.dev20200706"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -46,7 +46,7 @@
"cwltool==1.0.20191022103248",
"pyOpenSSL>=19.0.0", # FIXME remove once yadage-schemas solves deps.
"jsonpointer>=2.0",
"reana-commons>=0.7.0.dev20200408,<0.8.0",
"reana-commons>=0.7.0.dev20200625,<0.8.0",
"rfc3987>=1.3.8", # FIXME remove once yadage-schemas solves deps.
"six==1.12.0",
"strict-rfc3339>=0.7", # FIXME remove once yadage-schemas solves deps.
Expand Down

0 comments on commit 46a3ccc

Please sign in to comment.