Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion cirro/api/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down