Skip to content

Commit 534beed

Browse files
authored
Merge pull request #1454 from cmu-delphi/release/delphi-epidata-4.1.22
Release Delphi Epidata 4.1.22
2 parents 024a5a3 + 20bf8e2 commit 534beed

File tree

12 files changed

+1188
-477
lines changed

12 files changed

+1188
-477
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.21
2+
current_version = 4.1.22
33
commit = False
44
tag = False
55

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.21
3+
version = 4.1.22
44

55
[options]
66
packages =

docs/symptom-survey/publications.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ Pandemic"](https://www.pnas.org/topic/548) in *PNAS*:
2626

2727
Research publications using the survey data include:
2828

29+
- Perofsky, A.C., Hansen, C.L., Burstein, R. et al (2024). [Impacts of human
30+
mobility on the citywide transmission dynamics of 18 respiratory viruses
31+
in pre- and post-COVID-19 pandemic years](https://doi.org/10.1038/s41467-024-48528-2).
32+
*Nature Communications* 15, 4164.
2933
- Z. Yang, R. Krishnan, and B. Li (2024). [The interplay between individual
3034
mobility, health risk, and economic choice: A holistic model for COVID-19
3135
policy intervention](https://doi.org/10.1287/ijds.2023.0013). *INFORMS

requirements.api.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pandas==1.2.3
1010
python-dotenv==0.15.0
1111
pyyaml
1212
redis==3.5.3
13-
requests==2.31.0
13+
requests==2.32.0
1414
scipy==1.10.0
1515
sentry-sdk[flask]
1616
SQLAlchemy==1.4.40

requirements.dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ mypy>=0.790
1313
mysql-connector==2.2.9
1414
numpy==1.22.4
1515
pycountry==22.3.5
16-
pymysql==1.0.2
1716
pytest==7.2.0
1817
pytest-check==1.3.0
1918
sas7bdat==2.2.3

src/client/delphi_epidata.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Epidata <- (function() {
1515
# API base url
1616
BASE_URL <- getOption('epidata.url', default = 'https://api.delphi.cmu.edu/epidata/')
1717

18-
client_version <- '4.1.21'
18+
client_version <- '4.1.22'
1919

2020
auth <- getOption("epidata.auth", default = NA)
2121

src/client/delphi_epidata.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
})(this, function (exports, fetchImpl, jQuery) {
2424
const BASE_URL = "https://api.delphi.cmu.edu/epidata/";
25-
const client_version = "4.1.21";
25+
const client_version = "4.1.22";
2626

2727
// Helper function to cast values and/or ranges to strings
2828
function _listitem(value) {

src/client/delphi_epidata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from delphi.epidata.common.logger import get_structured_logger
2020

21-
__version__ = "4.1.21"
21+
__version__ = "4.1.22"
2222

2323
_HEADERS = {"user-agent": "delphi_epidata/" + __version__ + " (Python)"}
2424

src/client/packaging/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "delphi_epidata",
33
"description": "Delphi Epidata API Client",
44
"authors": "Delphi Group",
5-
"version": "4.1.21",
5+
"version": "4.1.22",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {

src/client/packaging/pypi/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="delphi_epidata",
8-
version="4.1.21",
8+
version="4.1.22",
99
author="David Farrow",
1010
author_email="[email protected]",
1111
description="A programmatic interface to Delphi's Epidata API.",

src/server/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
load_dotenv()
99

10-
VERSION = "4.1.21"
10+
VERSION = "4.1.22"
1111

1212
MAX_RESULTS = int(10e6)
1313
MAX_COMPATIBILITY_RESULTS = int(3650)

src/server/endpoints/covidcast_utils/db_signals.csv

Lines changed: 1175 additions & 467 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)