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
7 changes: 0 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,6 @@ jobs:

- name: Install system dependencies
run: |
# Remove existing nginx to ensure clean install from PPA
sudo apt-get remove -y nginx nginx-common nginx-core nginx-full
sudo apt-get purge -y nginx nginx-common nginx-core nginx-full

# add the PPA repository with brotli support for nginx
sudo add-apt-repository ppa:ondrej/nginx -y

sudo apt-get update -y
sudo apt-get install -y wget unzip nginx libnginx-mod-http-brotli-static libnginx-mod-http-brotli-filter

Expand Down
3 changes: 3 additions & 0 deletions app/json_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ def default(self, o):
elif type(o).__name__ == "ndarray": # avoid numpy import
return o.tolist()

elif type(o).__module__ == "numpy" and hasattr(o, "item"): # numpy scalar
return o.item()

elif type(o).__name__ == "DataFrame": # avoid pandas import
o.columns = o.columns.droplevel("channel") # flatten MultiIndex
return o.to_dict(orient="index")
Expand Down
Loading