Skip to content

Commit c05917d

Browse files
authored
Merge pull request #1566 from cmu-delphi/release/delphi-epidata-4.1.27
Release Delphi Epidata 4.1.27
2 parents 9e21bfb + 27cdbff commit c05917d

File tree

93 files changed

+1261
-981
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+1261
-981
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.1.26
2+
current_version = 4.1.27
33
commit = False
44
tag = False
55

.github/workflows/missing_signals.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: python scripts/report_missing_covidcast_meta.py
2222
- name: Upload Missing Artifact
2323
if: failure()
24-
uses: actions/upload-artifact@v2
24+
uses: actions/upload-artifact@v4
2525
with:
2626
name: missing_db_signals.csv
2727
path: missing_db_signals.csv

.github/workflows/performance-tests-one-time.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
write_float('requests_per_sec', final_line[9])
102102
103103
- name: Archive results as artifacts
104-
uses: actions/upload-artifact@v3
104+
uses: actions/upload-artifact@v4
105105
with:
106106
name: locust-output
107107
path: |

.github/workflows/performance-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
write_float('requests_per_sec', final_line[9])
110110
111111
- name: Archive results as artifacts
112-
uses: actions/upload-artifact@v3
112+
uses: actions/upload-artifact@v4
113113
with:
114114
name: locust-output
115115
path: |

.github/workflows/release-helper.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
working-directory: src/client/packaging/pypi
9090
run: |
9191
python -m build --sdist --wheel
92-
- uses: actions/upload-artifact@v2
92+
- uses: actions/upload-artifact@v4
9393
with:
9494
name: delphi_epidata_py
9595
path: src/client/packaging/pypi/dist/*.tar.gz
@@ -132,7 +132,7 @@ jobs:
132132
- run: npm pack
133133
- name: Rename to a different name
134134
run: for f in *.tgz; do mv "$f" "$(echo "$f" | sed s/delphi_epidata-/delphi_epidata_js-/)"; done
135-
- uses: actions/upload-artifact@v2
135+
- uses: actions/upload-artifact@v4
136136
with:
137137
name: delphi_epidata_js
138138
path: src/client/packaging/npm/*.tgz

dev/local/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = Delphi Development
3-
version = 4.1.26
3+
version = 4.1.27
44

55
[options]
66
packages =

docs/about_delphi.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: About Delphi
3+
nav_order: 60
4+
has_children: false
5+
---
6+
7+
# About The Delphi Group
8+
9+
The Delphi Group's mission is to develop the theory and practice of epidemic detection, tracking and forecasting, and their use in decision making, both public and private.
10+
11+
Our vision is to make this technology as useful as weather forecasting is today.
12+
13+
Find out more about the Delphi Research Group on our <a href="https://delphi.cmu.edu" target="_blank">offical webpage</a>.
14+
Please read our <a href="https://delphi.cmu.edu/blog" target="_blank">blog</a> for additional news, findings, and musings from the team.
15+

docs/api/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Other Endpoints (COVID-19 and Other Diseases)
3-
nav_order: 3
43
has_children: true
4+
nav_order: 3
55
---
66

77
# Other Endpoints (COVID-19 and Other Diseases)
@@ -208,4 +208,4 @@ To access our Epidata API, visit our [Epidata API Client Libraries)](client_libr
208208

209209
# Related Work
210210

211-
Please visit our [related works](related_work.md) page for more information.
211+
Please visit our [related works](../related_work.md) page for more information.

docs/api/api_keys.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: API Keys
3+
parent: Epidata API Intro
34
nav_order: 1
4-
has_children: true
55
---
66

77
# Epidata API Keys
@@ -42,11 +42,12 @@ there are several ways to use your key to authenticate your requests:
4242

4343
### Using a client
4444

45-
* covidcast
45+
* [epidatr](https://cmu-delphi.github.io/epidatr/#api-keys)
46+
* [epidatpy](https://cmu-delphi.github.io/epidatpy/#api-keys)
47+
* [delphi-epidata](https://cmu-delphi.github.io/delphi-epidata/api/client_libraries.html)
48+
* covidcast (deprecated in favor of `epidatr` and `epidatpy`)
4649
* [R client](https://cmu-delphi.github.io/covidcast/covidcastR/reference/covidcast_signal.html#api-keys-1)
4750
* [Python client](https://cmu-delphi.github.io/covidcast/covidcast-py/html/signals.html#covidcast.use_api_key)
48-
* [epidatr](https://github.com/cmu-delphi/epidatr#api-keys)
49-
* [delphi-epidata](https://cmu-delphi.github.io/delphi-epidata/api/client_libraries.html)
5051

5152
### Via request parameter
5253

docs/api/cdc.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
2-
title: CDC
3-
parent: Other Endpoints (COVID-19 and Other Diseases)
2+
title: <i>inactive</i> CDC
3+
parent: Data Sources and Signals
4+
grand_parent: Other Endpoints (COVID-19 and Other Diseases)
5+
nav_order: 2
46
---
57

68
# CDC

0 commit comments

Comments
 (0)