diff --git a/README.md b/README.md index e469da59..e8340119 100644 --- a/README.md +++ b/README.md @@ -105,10 +105,10 @@ See the following set of Jupyter notebooks that contain examples on the followin ### Supported environment variables -| Name | Description | Default | -|-------------|-------------------------------|-----------------| -| PW_HOME | Local configuration directory | ~/.cirro | -| PW_BASE_URL | Base URL of the data portal | data-portal.io | +| Name | Description | Default | +|-------------|-------------------------------|-----------| +| PW_HOME | Local configuration directory | ~/.cirro | +| PW_BASE_URL | Base URL of the data portal | cirro.bio | ### Configuration @@ -122,7 +122,7 @@ It will pause for an increasing amount of time for each retry attempt. ```ini [General] -base_url = data-portal.io +base_url = cirro.bio transfer_max_retries = 15 ``` diff --git a/cirro/api/config.py b/cirro/api/config.py index dba5dc6c..029d8913 100644 --- a/cirro/api/config.py +++ b/cirro/api/config.py @@ -10,7 +10,7 @@ class Constants: home = os.environ.get('PW_HOME', '~/.cirro') config_path = Path(home, 'config.ini').expanduser() - default_base_url = "data-portal.io" + default_base_url = 'cirro.bio' default_max_retries = 10 diff --git a/pyproject.toml b/pyproject.toml index f5dea305..6a6b095f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cirro" -version = "0.6.11" +version = "0.7.0" description = "CLI tool and SDK for interacting with the Cirro platform" authors = ["Fred Hutch "] license = "MIT"