Skip to content

Commit db411c8

Browse files
authored
Change domain (#70)
* change domain * bump version
1 parent 4123a71 commit db411c8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ See the following set of Jupyter notebooks that contain examples on the followin
105105

106106
### Supported environment variables
107107

108-
| Name | Description | Default |
109-
|-------------|-------------------------------|-----------------|
110-
| PW_HOME | Local configuration directory | ~/.cirro |
111-
| PW_BASE_URL | Base URL of the data portal | data-portal.io |
108+
| Name | Description | Default |
109+
|-------------|-------------------------------|-----------|
110+
| PW_HOME | Local configuration directory | ~/.cirro |
111+
| PW_BASE_URL | Base URL of the data portal | cirro.bio |
112112

113113
### Configuration
114114

@@ -122,7 +122,7 @@ It will pause for an increasing amount of time for each retry attempt.
122122

123123
```ini
124124
[General]
125-
base_url = data-portal.io
125+
base_url = cirro.bio
126126
transfer_max_retries = 15
127127
```
128128

cirro/api/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class Constants:
1111
home = os.environ.get('PW_HOME', '~/.cirro')
1212
config_path = Path(home, 'config.ini').expanduser()
13-
default_base_url = "data-portal.io"
13+
default_base_url = 'cirro.bio'
1414
default_max_retries = 10
1515

1616

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cirro"
3-
version = "0.6.11"
3+
version = "0.7.0"
44
description = "CLI tool and SDK for interacting with the Cirro platform"
55
authors = ["Fred Hutch <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)