Skip to content

Commit bb8f5d5

Browse files
authored
Merge pull request #1379 from cmu-delphi/release/delphi-epidata-4.1.17
Release Delphi Epidata 4.1.17
2 parents 1082c4c + 9c5aee3 commit bb8f5d5

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
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.16
2+
current_version = 4.1.17
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.16
3+
version = 4.1.17
44

55
[options]
66
packages =

requirements.dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aiohttp==3.9.0
1+
aiohttp==3.9.2
22
black>=20.8b1
33
bump2version==1.0.1
44
covidcast==0.1.5

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.16'
18+
client_version <- '4.1.17'
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.16";
25+
const client_version = "4.1.17";
2626

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

src/client/delphi_epidata.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
from tenacity import retry, stop_after_attempt
1515

1616
from aiohttp import ClientSession, TCPConnector, BasicAuth
17-
from pkg_resources import get_distribution, DistributionNotFound
17+
from importlib.metadata import version, PackageNotFoundError
1818

1919
# Obtain package version for the user-agent. Uses the installed version by
2020
# preference, even if you've installed it and then use this script independently
2121
# by accident.
2222
try:
23-
_version = get_distribution("delphi-epidata").version
24-
except DistributionNotFound:
23+
_version = version("delphi-epidata")
24+
except PackageNotFoundError:
2525
_version = "0.script"
2626

2727
_HEADERS = {"user-agent": "delphi_epidata/" + _version + " (Python)"}

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.16",
5+
"version": "4.1.17",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .delphi_epidata import Epidata
22

33
name = "delphi_epidata"
4-
__version__ = "4.1.16"
4+
__version__ = "4.1.17"

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.16",
8+
version="4.1.17",
99
author="David Farrow",
1010
author_email="dfarrow0@gmail.com",
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.16"
10+
VERSION = "4.1.17"
1111

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

0 commit comments

Comments
 (0)