Skip to content

Commit 92a8dea

Browse files
authored
Unset GMT_DATA_SERVER and use the default value (#1558)
1 parent 24d6474 commit 92a8dea

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/cache_data.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ jobs:
5151
- name: Download remote data
5252
run: |
5353
python -c "from pygmt.helpers.testing import download_test_data; download_test_data()"
54-
env:
55-
GMT_DATA_SERVER: https://oceania.generic-mapping-tools.org/
5654
5755
# Upload the downloaded files as artifacts to GitHub
5856
- name: Upload artifacts to GitHub

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"build:miniconda": "curl -o ~/miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash ~/miniconda.sh -b -p $HOME/miniconda",
44
"build:pygmt": "conda install mamba -c conda-forge -y && mamba env create -f environment.yml && source activate pygmt && pip install --no-deps .",
55
"build:docs": "source activate pygmt && cd doc && make all && mv _build/html ../public",
6-
"build": "export PATH=$HOME/miniconda/bin:$PATH && export GMT_DATA_SERVER=https://oceania.generic-mapping-tools.org && npm run build:miniconda && npm run build:pygmt && npm run build:docs"
6+
"build": "export PATH=$HOME/miniconda/bin:$PATH && npm run build:miniconda && npm run build:pygmt && npm run build:docs"
77
}
88
}

0 commit comments

Comments
 (0)