Skip to content

Commit 35c0f84

Browse files
committed
Improve Swagger doc (fix numcodecs==0.15.1 issue zarr-developers/numcodecs/issues/721)
1 parent 7f57f1c commit 35c0f84

File tree

4 files changed

+29
-27
lines changed

4 files changed

+29
-27
lines changed

Pipfile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ name = "pypi"
55

66
[packages]
77
gunicorn = "==23.0.0"
8-
matplotlib = "==3.8.4"
8+
matplotlib = "==3.10.1"
99
netcdf4 = "==1.7.2"
10-
numcodecs = "==0.13.0"
11-
numpy = "==2.2.0"
12-
orjson = "==3.10.12"
13-
polars = "==1.17.1"
14-
pydantic = "==2.10.3"
15-
pytmd = "==2.1.8"
10+
numcodecs = "==0.15.1"
11+
numpy = "==2.2.4"
12+
orjson = "==3.10.16"
13+
polars = "==1.27.1"
14+
pydantic = "==2.11.3"
15+
pytmd = "==2.2.3"
1616
requests = "==2.32.3"
17-
scipy = "==1.14.1"
18-
uvicorn = "==0.34.0"
19-
xarray = "==2024.11.0"
20-
zarr = "==2.18.4"
21-
dask = {extras = ["complete"], version = "==2024.12.0"}
22-
fastapi = {extras = ["standard"], version = "==0.115.6"}
17+
scipy = "==1.15.2"
18+
uvicorn = "==0.34.1"
19+
xarray = "==2025.3.1"
20+
zarr = "==2.18.6"
21+
dask = {extras = ["complete"], version = "==2025.3.0"}
22+
fastapi = {extras = ["standard"], version = "==0.115.12"}
2323
pandas = {extras = ["pyarrow"], version = "==2.2.3"}
2424

2525
[dev-packages]

change_log.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,5 @@
6464
#### ver 0.2.5 Add a 'truncate' mode: lon/lat/tide to 5/5/3 decimal places. Fix tide-height unit in cm in 'map'.
6565

6666
-- fix introduced bug due to previous modification: tide height at time_series has wrong unit scaling and without truncate mode
67+
68+
#### ver 0.2.6 Improve Swagger doc (fix numcodecs==0.15.1 issue zarr-developers/numcodecs/issues/721)

requirements.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
dask[complete]==2024.12.0
2-
fastapi[standard]==0.115.6
1+
dask[complete]==2025.3.0
2+
fastapi[standard]==0.115.12
33
gunicorn==23.0.0
4-
matplotlib==3.8.4
4+
matplotlib==3.10.1
55
netCDF4==1.7.2
6-
numcodecs==0.13.0
7-
numpy==2.2.0
8-
orjson==3.10.12
6+
numcodecs==0.15.1
7+
numpy==2.2.4
8+
orjson==3.10.16
99
pandas[pyarrow]==2.2.3
10-
polars==1.17.1
11-
pydantic==2.10.3
12-
pyTMD==2.1.8
10+
polars==1.27.1
11+
pydantic==2.11.3
12+
pyTMD==2.2.3
1313
Requests==2.32.3
14-
scipy==1.14.1
15-
uvicorn==0.34.0
16-
xarray==2024.11.0
17-
zarr==2.18.4
14+
scipy==1.15.2
15+
uvicorn==0.34.1
16+
xarray==2025.3.1
17+
zarr==2.18.6

tide_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ async def get_tide(
209209
#### Usage
210210
* One-point tide height with time-span limitation (<= 30 days, hourly data): e.g. /tide?lon0=125&lat0=15&start=2023-07-25&end=2023-07-26T01:30:00.000
211211
* Get current in bounding-box <= 45x45 in degrees at one time moment(in ISOstring): e.g. /tide?lon0=125&lon1&=135&lat0=15&lat1=30&start=2023-07-25T01:30:00.000
212-
* Note: the unit of z (tide height) is cm, u and v (tidal current) are m/s
212+
* Note: the unit of z (tide height), u and v (tidal current) are all cm/s
213213
"""
214214

215215
if append is None:

0 commit comments

Comments
 (0)