Skip to content

Commit 74dcf8a

Browse files
authored
Merge pull request #393 from ocefpaf/GHA_version_fix
Use canonical ERDDAP docs
2 parents 52f14a1 + 9d9d12f commit 74dcf8a

File tree

8 files changed

+13
-14
lines changed

8 files changed

+13
-14
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: Documentation
32

43
on:
@@ -31,7 +30,7 @@ jobs:
3130
create-args: >-
3231
python=3 --file requirements.txt --file requirements-dev.txt --channel conda-forge
3332
34-
- name: Install erddapy
33+
- name: Install library
3534
run: |
3635
python -m pip install -e . --no-deps --force-reinstall
3736

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
packages:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
20+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121

2222
- name: Set up Python
2323
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
strategy:
1212
matrix:
1313
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
14-
os: [windows-latest, ubuntu-latest, macos-latest]
14+
os: [ windows-latest, ubuntu-latest, macos-latest ]
1515
fail-fast: false
1616
defaults:
1717
run:
1818
shell: bash -l {0}
1919

2020
steps:
21-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
21+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2222

2323
- name: Setup Micromamba Python ${{ matrix.python-version }}
2424
uses: mamba-org/setup-micromamba@0dea6379afdaffa5d528b3d1dabc45da37f443fc # v2.0.4
@@ -31,7 +31,7 @@ jobs:
3131
--file requirements-dev.txt
3232
--channel conda-forge
3333
34-
- name: Install erddapy
34+
- name: Install library
3535
run: |
3636
python -m pip install -e . --no-deps --force-reinstall
3737

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The main advantages of ERDDAP are:
2929
and reformats the data into the format that you requested.
3030

3131

32-
See https://standards.sensors.ioos.us/erddap/index.html for more information.
32+
See https://erddap.github.io/ for more information.
3333

3434

3535
.. toctree::

notebooks/01b-tabledap.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@
274274
"source": [
275275
"%%time\n",
276276
"\n",
277-
"# First one, slow.\n",
277+
"# First request can be slow.\n",
278278
"e.get_var_by_attr(\n",
279279
" dataset_id=\"whoi_406-20160902T1700\",\n",
280280
" standard_name=\"sea_water_temperature\",\n",
@@ -296,7 +296,7 @@
296296
"source": [
297297
"%%time\n",
298298
"\n",
299-
"# Second one on the same glider, a little bit faster.\n",
299+
"# Second request on dataset_id will be faster.\n",
300300
"e.get_var_by_attr(\n",
301301
" dataset_id=\"whoi_406-20160902T1700\",\n",
302302
" standard_name=\"sea_water_practical_salinity\",\n",
@@ -601,7 +601,7 @@
601601
"name": "python",
602602
"nbconvert_exporter": "python",
603603
"pygments_lexer": "ipython3",
604-
"version": "3.12.5"
604+
"version": "3.13.2"
605605
}
606606
},
607607
"nbformat": 4,

notebooks/02-extras.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
"name": "python",
148148
"nbconvert_exporter": "python",
149149
"pygments_lexer": "ipython3",
150-
"version": "3.10.13"
150+
"version": "3.13.2"
151151
}
152152
},
153153
"nbformat": 4,

notebooks/03-advanced_search.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# Searching datasets\n",
88
"\n",
9-
"erddapy can wrap the same form-like search capabilities of ERDDAP with the\n",
9+
"Erddapy can wrap the same form-like search capabilities of ERDDAP with the\n",
1010
"_search_for_ keyword.\n"
1111
]
1212
},
@@ -258,7 +258,7 @@
258258
"name": "python",
259259
"nbconvert_exporter": "python",
260260
"pygments_lexer": "ipython3",
261-
"version": "3.10.13"
261+
"version": "3.13.2"
262262
}
263263
},
264264
"nbformat": 4,

notebooks/04-refactor-update.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
"name": "python",
121121
"nbconvert_exporter": "python",
122122
"pygments_lexer": "ipython3",
123-
"version": "3.10.13"
123+
"version": "3.13.2"
124124
},
125125
"vscode": {
126126
"interpreter": {

0 commit comments

Comments
 (0)